TispSpotContentViewModel.cs 829 B

12345678910111213141516171819202122232425262728
  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 TispSpotContentViewModel : BaseViewModel
  9. {
  10. public Guid C_ID { get; set; }
  11. public Guid C_ContentCode { get; set; }
  12. public Guid C_SpotCode { get; set; }
  13. public string C_Remark { get; set; }
  14. /// <summary>
  15. /// GPS误差范围
  16. /// </summary>
  17. //public int I_Offset { get; set; }
  18. //public string C_ImageUrl { 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 char C_Status { get; set; }
  24. }
  25. }