TdevDevStoreViewModel.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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
  7. {
  8. public class TdevDevStoreViewModel : BaseViewModel
  9. {
  10. public string C_ID { get; set; }
  11. public string C_Name { get; set; }
  12. public string C_DevTempCode { get; set; }
  13. public string c_DevTempName { get; set; }
  14. public string C_StoreCode { get; set; }
  15. public string C_NumberCode{ get; set; }
  16. public string C_RunSpotConfig { get; set; }
  17. public string C_UserConfig { get; set; }
  18. public string C_Remark { get; set; }
  19. public Guid C_CreateBy { get; set; }
  20. public DateTime D_CreateOn { get; set; }
  21. public Guid? C_LastUpdatedBy { get; set; }
  22. public DateTime? D_LastUpdatedOn { get; set; }
  23. public string C_Status { get; set; }
  24. public string C_OpsTempCode { get; set; }
  25. public string C_OpsTempName { get; set; }
  26. public string C_RepairTempCode { get; set; }
  27. public string C_RepairTempName { get; set; }
  28. public string C_RunTempCode { get; set; }
  29. public string C_RunTempName { get; set; }
  30. public string C_PlanTempCode { get; set; }
  31. public string C_PlanTempName { get; set; }
  32. public string C_ContractNumber { get; set; }
  33. public DateTime? D_DevOpsStart { get; set; }
  34. public DateTime? D_DevOpsEnd { get; set; }
  35. public string C_DevQRUrl { get; set; }
  36. public string C_Url { get; set; }
  37. public string C_StaticUrl { get; set; }
  38. public string C_GPS { get; set; }
  39. public string LNG { get; set; }
  40. public string LAT { get; set; }
  41. public string C_RunRecord { get; set; }
  42. public string DevManager { get; set; }
  43. public int I_Sort { get; set; }
  44. public string packageTime { get; set; }
  45. }
  46. public class TdevDevStoreDetailViewModel
  47. {
  48. public string C_ID { get; set; }
  49. public string C_GPS { get; set; }
  50. public string C_Name { get; set; }
  51. public string C_MachineCode { get; set; }
  52. public string C_QRCode { get; set; }
  53. public string C_Marker { get; set; }
  54. public DateTime D_ProdDate { get; set; }
  55. public string C_ProdArea { get; set; }
  56. public string C_PerformanceParameter { get; set; }
  57. public string C_Category { get; set; }
  58. public string C_Manufacturer { get; set; }
  59. public string C_ImagePath { get; set; }
  60. public string C_IconPath { get; set; }
  61. public string C_Parameter { get; set; }
  62. public string C_Contacts { get; set; }
  63. public string C_ContactPhone { get; set; }
  64. public string C_OfficialWebsiteUrl { get; set; }
  65. public int I_ValiDays { get; set; }
  66. public string C_Remark { get; set; }
  67. public string C_RunRecord { get; set; }
  68. public Guid C_CreateBy { get; set; }
  69. public DateTime D_CreateOn { get; set; }
  70. public Guid? C_LastUpdatedBy { get; set; }
  71. public DateTime? D_LastUpdatedOn { get; set; }
  72. public string C_Status { get; set; }
  73. //业主设备信息
  74. public string DevStoreName { get; set; }
  75. public string DevStoreNumberCode { get; set; }
  76. public string DevStoreRemark { get; set; }
  77. public string DevStoreStatus { get; set; }
  78. public string DevStoreUrl { get; set; }
  79. public Guid SpotID { get; set; }
  80. }
  81. //业主设备运行记录
  82. public class DevStoreRunRecord
  83. {
  84. //累计运行时长
  85. public string TotalRunDuration { get; set; }
  86. //累计停机时长
  87. public string TotalSpotDuration { get; set; }
  88. //运行时长
  89. public string RunDuration { get; set; }
  90. //首次开机时间
  91. public string FiratOnDate { get; set; }
  92. //最后一次开机时间
  93. public string LastOffDate { get; set; }
  94. //报废时间
  95. public string ScrapDate { get; set; }
  96. //累计维修数
  97. public int MTNRepairOrder { get; set; }
  98. //累计维保数
  99. public int MTNDevOps { get; set; }
  100. //累计点检数
  101. public int ISPRecord { get; set; }
  102. }
  103. }