TispContentGroupViewModel.cs 997 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Ropin.Inspection.Model.ViewModel
  7. {
  8. /// <summary>
  9. /// 巡检内容分组
  10. /// </summary>
  11. public class TispContentGroupViewModel : BaseViewModel
  12. {
  13. public Guid G_ID { get; set; }
  14. public string C_StoreCode { get; set; }
  15. public string C_DevStoreCode { get; set; }
  16. public string C_Name { get; set; }
  17. public int I_Sort { get; set; }
  18. public string C_Remark { get; set; }
  19. //public Guid G_CreateBy { get; set; }
  20. public DateTime D_CreateOn { get; set; }
  21. //public Guid G_LastUpdatedBy { get; set; }
  22. public DateTime D_LastUpdatedOn { get; set; }
  23. public string C_Status { get; set; }
  24. public int I_Type { get; set; }
  25. public string C_PatrolItem { get; set; }
  26. public string C_DevName { get; set; }
  27. public string C_DevQRUrl { get; set; }
  28. }
  29. }