using System; using System.Collections.Generic; namespace CouponReport.Models.Parkingeyes; public partial class ChargingPile { public DateTime? CreationDate { get; set; } public DateTime? UpdateDate { get; set; } /// /// 車格號 /// public string LotNo { get; set; } = null!; /// /// 充電樁序號 /// public string ChargingPileId { get; set; } = null!; /// /// 槍號 /// public string SubPort { get; set; } = null!; /// /// 啟用 /// public bool Enable { get; set; } }