TispSpotNewRecordViewModel.cs 1.1 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 TispSpotNewRecordViewModel : 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 IEnumerable<TispContentViewModel> ContentList { get; set; }
  26. public Guid C_CreateBy { get; set; }
  27. public DateTime D_CreateOn { get; set; }
  28. public Guid C_LastUpdatedBy { get; set; }
  29. public DateTime D_LastUpdatedOn { get; set; }
  30. public char C_Status { get; set; } = '1';
  31. }
  32. }