VmcCameraTemplateViewModel.cs 1.3 KB

12345678910111213141516171819202122232425262728293031323334
  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.VMC
  7. {
  8. public class VmcCameraTemplateViewModel : BaseViewModel
  9. {
  10. public string C_ID { get; set; }
  11. public string C_Name { get; set; }
  12. public string C_QRCode { get; set; }
  13. public string C_Marker { get; set; }
  14. public string C_ProdArea { get; set; }
  15. public string C_Manufacturer { get; set; }
  16. public string C_ImagePath { get; set; }
  17. public string C_IconPath { get; set; }
  18. public string C_ThreeDPath { get; set; }
  19. public string C_Parameter { get; set; }
  20. public string C_Contacts { get; set; }
  21. public string C_ContactPhone { get; set; }
  22. public string C_OfficialWebsiteUrl { get; set; }
  23. public int? I_ValiDays { get; set; }
  24. public int? I_Sort { get; set; }
  25. public string C_Remark { get; set; }
  26. public string C_CreateBy { get; set; }
  27. public string C_CreateName { get; set; }
  28. public DateTime D_CreateOn { get; set; }
  29. public string C_LastUpdatedBy { get; set; }
  30. public DateTime? D_LastUpdatedOn { get; set; }
  31. public string C_Status { get; set; }
  32. }
  33. }