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.
|
- using System;
- using System.Collections.Generic;
-
- namespace CouponReport.Models.Parkingeyes;
-
- public partial class CarIdentityCounter
- {
- public string StationId { get; set; } = null!;
-
- public string CounterId { get; set; } = null!;
-
- public string CounterType { get; set; } = null!;
-
- public string? CounterName { get; set; }
-
- /// <summary>
- /// 顯示類別
- /// </summary>
- public int DisplayType { get; set; }
-
- public decimal TotalQty { get; set; }
-
- public decimal UsedQty { get; set; }
-
- public decimal ReservedQty { get; set; }
-
- public string? AdamIp { get; set; }
-
- public int? DoPort { get; set; }
-
- public bool SetAsFull { get; set; }
-
- public bool Enable { get; set; }
-
- /// <summary>
- /// 預先設定要等排程處理的Flag
- /// </summary>
- public bool ScheduleSet { get; set; }
-
- public string? Setting888 { get; set; }
-
- public int? Port { get; set; }
- }
|