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; }
///
/// 顯示類別
///
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; }
///
/// 預先設定要等排程處理的Flag
///
public bool ScheduleSet { get; set; }
public string? Setting888 { get; set; }
public int? Port { get; set; }
}