TispSpotContentsViewModel.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 TispSpotContentsViewModel : 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. /// <summary>
  15. /// 二维码编号
  16. /// </summary>
  17. public string C_QRCode { get; set; }
  18. public string C_GPS { get; set; }
  19. public string C_Remark { get; set; }
  20. /// <summary>
  21. /// GPS误差范围
  22. /// </summary>
  23. //public int I_Offset { get; set; }
  24. public string C_ImageUrl { get; set; }
  25. public IList<SpotContent> SpotContentList { get; set; }
  26. }
  27. public class SpotContent
  28. {
  29. public Guid C_ContentId { get; set; }
  30. public string C_ContentName { get; set; }
  31. public string C_ContentAlarmLevel { get; set; }
  32. }
  33. }