Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- 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; }
- }
|