TdevDeviceTemplateUpdateModel.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 TdevDeviceTemplateUpdateModel
  9. {
  10. public string C_Name { get; set; }
  11. public string C_MachineCode { get; set; }
  12. public string C_QRCode { get; set; }
  13. public string C_Marker { get; set; }
  14. public DateTime D_ProdDate { get; set; }
  15. public string C_ProdArea { get; set; }
  16. public string C_PerformanceParameter { get; set; }
  17. public string C_Category { get; set; }
  18. public string C_Manufacturer { get; set; }
  19. public string C_ImagePath { get; set; }
  20. public string C_IconPath { get; set; }
  21. public string C_ThreeDPath { get; set; }
  22. public string C_Parameter { get; set; }
  23. public string C_Contacts { get; set; }
  24. public string C_ContactPhone { get; set; }
  25. public string C_OfficialWebsiteUrl { get; set; }
  26. public int I_ValiDays { get; set; }
  27. public string C_Remark { get; set; }
  28. public string C_Status { get; set; }
  29. }
  30. public class TdevDeviceTempOpsContentUpdateModel
  31. {
  32. public string C_Name { get; set; }
  33. public string C_Type { get; set; }
  34. public string C_AlarmLevel { get; set; }
  35. public int? I_Cycle { get; set; }
  36. public int? I_Sort { get; set; }
  37. public string? C_Number { get; set; }
  38. public string C_Remark { get; set; }
  39. public string C_Status { get; set; }
  40. }
  41. }