using System;
using System.Collections.Generic;
namespace CouponReport.Models.Parkingeyes;
public partial class ChargingBill
{
public DateTime CreationDate { get; set; }
public DateTime? UpdateDate { get; set; }
///
/// 帳單編號
///
public Guid BillingNo { get; set; }
///
/// 金額
///
public decimal TotalAmount { get; set; }
///
/// 中控進場序號
///
public string? CenterSerialNo { get; set; }
public string CarNo { get; set; } = null!;
public DateTime ValuationDateTime { get; set; }
public DateTime LimitedTimeDeparture { get; set; }
///
/// 付款時間
///
public DateTime? PaidDateTime { get; set; }
///
/// 繳費裝置
///
public string? PayDeviceId { get; set; }
public virtual ICollection ChargingBillDetails { get; set; } = new List();
public virtual ICollection ChargingBillSessions { get; set; } = new List();
}