TispSpotUpdateViewModel.cs 1.2 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.ViewModel
  7. {
  8. public class TispSpotUpdateViewModel
  9. {
  10. public string C_Number { get; set; }
  11. public string C_Name { get; set; }
  12. public string C_Position { get; set; }
  13. /// <summary>
  14. /// 二维码编号
  15. /// </summary>
  16. public string C_QRCode { get; set; }
  17. public string C_GPS { 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_StoreCode { get; set; }
  25. public string C_AreaCode { get; set; }
  26. public decimal? F_Map_X { get; set; }
  27. public decimal? F_Map_Y { get; set; }
  28. public string C_ImageUrl { get; set; }
  29. public int I_Offset { get; set; }
  30. public List<Guid> contentIdList { get; set; }
  31. public List<string> devOpsContentIdList { get; set; }
  32. }
  33. }