ReportViewModel.cs 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using Ropin.Inspection.Common.Helper;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ropin.Inspection.Model.ViewModel
  8. {
  9. public class ReportViewModel : BaseViewModel
  10. {
  11. //private IEnumerable<FirePreventionWeekRecordViewModel> firePreventionWeekRecord;
  12. public Guid G_ID { get; set; }
  13. public string C_StoreCode { get; set; }
  14. public string C_DevStoreCode { get; set; }
  15. public string C_Name { get; set; }
  16. public string C_DevName { get; set; }
  17. public string C_DevNumber { get; set; }
  18. public int I_Type { get; set; }
  19. public string C_GroupName { get; set; }
  20. public DateTime D_Start { get; set; }
  21. public DateTime D_End { get; set; }
  22. public DateTime D_CreateTime { get; set; }
  23. public string C_Data { get; set; }
  24. public string C_Remark { get; set; }
  25. public string C_Status { get; set; }
  26. //public IEnumerable<FirePreventionWeekRecordViewModel> FirePreventionWeekRecord
  27. //{
  28. // set
  29. // {
  30. // if (string.IsNullOrEmpty(C_Data))
  31. // {
  32. // firePreventionWeekRecord = JsonHelper.ParseFormByJson<IEnumerable<FirePreventionWeekRecordViewModel>>(C_Data);
  33. // }
  34. // }
  35. // get
  36. // {
  37. // return firePreventionWeekRecord;
  38. // }
  39. //}
  40. }
  41. }