TispSpotUserViewModel.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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 TispSpotUserViewModel : BaseViewModel
  9. {
  10. public Guid C_ID { get; set; }
  11. public Guid C_UserCode { get; set; }
  12. public Guid C_SpotCode { get; set; }
  13. public string C_Remark { get; set; }
  14. public string StoreName { get; set; }
  15. public string StoreCode { get; set; }
  16. //public Guid C_CreateBy { get; set; }
  17. //public DateTime D_CreateOn { get; set; }
  18. //public Guid C_LastUpdatedBy { get; set; }
  19. //public DateTime D_LastUpdatedOn { get; set; }
  20. //public string C_Status { get; set; }
  21. /// <summary>
  22. /// 用户名
  23. /// </summary>
  24. public string C_UserName { get; set; }
  25. /// <summary>
  26. /// 巡检点名称
  27. /// </summary>
  28. public string C_SpotName { get; set; }
  29. }
  30. public class TispUserStoreRouteSpotViewModel : BaseViewModel
  31. {
  32. public string StoreCode { get; set; }
  33. public string StoreName { get; set; }
  34. public IList<SimSpot> SpotUserList { get; set; }
  35. }
  36. public class SimSpot
  37. {
  38. public Guid C_SpotCode { get; set; }
  39. public string C_SpotName { get; set; }
  40. }
  41. }