裕隆城折扣合作@中興低碳 折扣報表
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.

44 line
939B

  1. using System;
  2. using System.Collections.Generic;
  3. namespace CouponReport.Models.Parkingeyes;
  4. public partial class CarIdentityCounter
  5. {
  6. public string StationId { get; set; } = null!;
  7. public string CounterId { get; set; } = null!;
  8. public string CounterType { get; set; } = null!;
  9. public string? CounterName { get; set; }
  10. /// <summary>
  11. /// 顯示類別
  12. /// </summary>
  13. public int DisplayType { get; set; }
  14. public decimal TotalQty { get; set; }
  15. public decimal UsedQty { get; set; }
  16. public decimal ReservedQty { get; set; }
  17. public string? AdamIp { get; set; }
  18. public int? DoPort { get; set; }
  19. public bool SetAsFull { get; set; }
  20. public bool Enable { get; set; }
  21. /// <summary>
  22. /// 預先設定要等排程處理的Flag
  23. /// </summary>
  24. public bool ScheduleSet { get; set; }
  25. public string? Setting888 { get; set; }
  26. public int? Port { get; set; }
  27. }