DevOpsPlanDeviceContentModel.cs 807 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Ropin.Inspection.Model.ViewModel.MTN
  9. {
  10. public class DevOpsPlanContentModel
  11. {
  12. public string CId { get; set; }
  13. [Required]
  14. public string CDevOpsPlanDeviceCode { get; set; }
  15. [Required]
  16. public string CSpotCode { get; set; }
  17. public string CDevOpsContentCode { get; set; }
  18. public List<string > CDevOpsContentCodes { get; set; }
  19. public bool? ISort { get; set; }
  20. public string CRemark { get; set; }
  21. public bool IIsDel { get; set; }
  22. }
  23. public class DevOpsPlanDeviceContentInput
  24. {
  25. }
  26. }