TispContentGroupViewModel.cs 854 B

12345678910111213141516171819202122232425262728
  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_Name { get; set; }
  16. public int I_Sort { get; set; }
  17. public string C_Remark { get; set; }
  18. //public Guid G_CreateBy { get; set; }
  19. public DateTime D_CreateOn { get; set; }
  20. //public Guid G_LastUpdatedBy { get; set; }
  21. public DateTime D_LastUpdatedOn { get; set; }
  22. public string C_Status { get; set; }
  23. public int I_Type { get; set; }
  24. public string C_PatrolItem { get; set; }
  25. }
  26. }