using System; using System.Collections.Generic; namespace CouponReport.Models.Parkingeyes; public partial class DivisionDisplay { /// /// 區域序號 /// public string DivisionId { get; set; } = null!; /// /// 顯示器編號 /// public string DisplayId { get; set; } = null!; /// /// ADAM IP /// public string AdamIp { get; set; } = null!; /// /// Do Port /// public int? DoPort { get; set; } /// /// 顯示類別 /// public int? DisplayType { get; set; } /// /// 啟用 /// public string? Enable { get; set; } /// /// 強制滿位 /// public string? SetAsFull { get; set; } /// /// 保留車格 /// public int? ReserveQty { get; set; } /// /// 警報秒數 /// public int? AlarmSec { get; set; } /// /// 預先設定要等PE處理的Flag /// public int ScheduleSet { get; set; } public int? Port { get; set; } public virtual Division Division { get; set; } = null!; }