TispSpotCreateViewModel.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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
  7. {
  8. public class TispSpotCreateViewModel : BaseViewModel
  9. {
  10. public Guid C_Code { get; set; }
  11. public string C_Number { get; set; }
  12. public string C_Name { get; set; }
  13. public string C_Position { get; set; }
  14. public string C_ImageUrl { get; set; }
  15. public string C_Remark { get; set; }
  16. public string C_StoreCode { get; set; }
  17. public string C_AreaCode { get; set; }
  18. public decimal? F_Map_X { get; set; }
  19. public decimal? F_Map_Y { get; set; }
  20. public string C_QRCode { get; set; }
  21. public string C_GPS { get; set; }
  22. public int I_Offset { get; set; }
  23. public List<Guid> contentIdList { get; set; }
  24. public List<string> devOpsContentIdList { get; set; }
  25. }
  26. public class TispSpotByDevCreateViewModel : BaseViewModel
  27. {
  28. public Guid C_Code { get; set; }
  29. public string C_Number { get; set; }
  30. public string C_Name { get; set; }
  31. public string C_Position { get; set; }
  32. public string C_ImageUrl { get; set; }
  33. public string C_Remark { get; set; }
  34. public string C_StoreCode { get; set; }
  35. public string C_AreaCode { get; set; }
  36. public decimal? F_Map_X { get; set; }
  37. public decimal? F_Map_Y { get; set; }
  38. public string C_QRCode { get; set; }
  39. public string C_GPS { get; set; }
  40. public int I_Offset { get; set; }
  41. public string C_DevStoreCode { get; set; }
  42. public List<TispContentViewModel> contentList { get; set; }
  43. public List<TmtnDevOpsContentViewModel> devOpsContentList { get; set; }
  44. }
  45. }