TdevBoxTemplateUpdateModel.cs 1015 B

1234567891011121314151617181920212223242526272829
  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 TdevBoxTemplateUpdateModel
  9. {
  10. public string C_Name { get; set; }
  11. public string C_QRCode { get; set; }
  12. public string C_Marker { get; set; }
  13. public string C_ProdArea { get; set; }
  14. public string C_Manufacturer { get; set; }
  15. public string C_ImagePath { get; set; }
  16. public string C_IconPath { get; set; }
  17. public string C_ThreeDPath { get; set; }
  18. public string C_Parameter { get; set; }
  19. public string C_Contacts { get; set; }
  20. public string C_ContactPhone { get; set; }
  21. public string C_OfficialWebsiteUrl { get; set; }
  22. public int? I_ValiDays { get; set; }
  23. public int I_ProtocolType { get; set; }
  24. public int? I_Sort { get; set; }
  25. public string C_Remark { get; set; }
  26. public string C_Status { get; set; }
  27. }
  28. }