DevOpsPlanDeviceModel.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations;
  4. using System.ComponentModel.DataAnnotations.Schema;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace Ropin.Inspection.Model.ViewModel.MTN
  9. {
  10. public class DevOpsPlanDeviceModel
  11. {
  12. public string CId { get; set; }
  13. [Required]
  14. public string CDevOpsPlanCode { get; set; }
  15. public string CSpotCode { get; set; }
  16. [Required]
  17. public string CDevStoreCode { get; set; }
  18. public List<string> cSpotCodes { get; set; }
  19. public string CRemark { get; set; }
  20. public bool IIsDel { get; set; }
  21. public DateTime D_CreateOn { get; set; }
  22. public string DevStoreName { get; set; }
  23. public string SpotName { get; set; }
  24. public string Url { get; set; }
  25. public string CNumberCode { get; set; }
  26. public bool IsConfig { get; set; }
  27. }
  28. public class DevOpsPlanDeviceGroupModel
  29. {
  30. public string CDevStoreCode { get; set; }
  31. public string DevStoreName { get; set; }
  32. public string CNumberCode { get; set; }
  33. public string Url { get; set; }
  34. public List<SpotGroupModel> Spots { get; set;}
  35. }
  36. public class SpotGroupModel
  37. {
  38. public string CSpotCode { get; set; }
  39. public string CName { get; set; }
  40. }
  41. public class DevOpsPlanDeviceInput
  42. {
  43. }
  44. }