裕隆城折扣合作@中興低碳 折扣報表
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 line
1.9KB

  1. using System;
  2. using System.Collections.Generic;
  3. namespace CouponReport.Models.Parkingeyes;
  4. public partial class CarEnter
  5. {
  6. public string StationId { get; set; } = null!;
  7. public string CarType { get; set; } = null!;
  8. public string CarNo { get; set; } = null!;
  9. public string? CarNoSimple { get; set; }
  10. public string? GridNumber { get; set; }
  11. public string? Etag { get; set; }
  12. public string? LaneNo { get; set; }
  13. public int ErrorCode { get; set; }
  14. public string? SourceDeviceId { get; set; }
  15. public int EnterType { get; set; }
  16. public int IsStationInside { get; set; }
  17. public int IsGridInside { get; set; }
  18. public DateTime EnterDateTime { get; set; }
  19. public DateTime? ValuationDateTime { get; set; }
  20. public DateTime? DepartureDateTime { get; set; }
  21. public DateTime? LimitedTimeDeparture { get; set; }
  22. public string? EnterPhotoPath { get; set; }
  23. public string? EnterPhotoUrlPath { get; set; }
  24. public int? Pay { get; set; }
  25. public string? PayType { get; set; }
  26. public DateTime? PayDateTime { get; set; }
  27. public string? PayDeviceId { get; set; }
  28. public DateTime? CreationDate { get; set; }
  29. public DateTime? UpdateDate { get; set; }
  30. public string SerialNo { get; set; } = null!;
  31. public string? Remark { get; set; }
  32. public int CarIdentity { get; set; }
  33. public string? DepartureLaneNo { get; set; }
  34. public string? DepartureSourceDeviceId { get; set; }
  35. public string? DeparturePhotoPath { get; set; }
  36. public string? DeparturePhotoUrlPath { get; set; }
  37. /// <summary>
  38. /// 資料處理的方式(0:一般, 1:程式處理)
  39. /// </summary>
  40. public int DataHandleType { get; set; }
  41. /// <summary>
  42. /// 從雲端建立資料
  43. /// </summary>
  44. public int CreateFromCloud { get; set; }
  45. public DateTime? OriginalDepartureDateTime { get; set; }
  46. }