using System;
using System.Collections.Generic;
namespace CouponReport.Models.Parkingeyes;
public partial class ChargingBillDetail
{
public DateTime CreationDate { get; set; }
///
/// 帳單編號
///
public Guid BillingNo { get; set; }
///
/// 行號
///
public int LineNo { get; set; }
///
/// 車格號
///
public string LotNo { get; set; } = null!;
///
/// 收費類型
///
public string? FeeType { get; set; }
///
/// 小計
///
public decimal DetailAmount { get; set; }
///
/// 敘述
///
public string? ChargingDescription { get; set; }
///
/// 瓦數總和
///
public int SumKwh { get; set; }
///
/// 秒數總和
///
public int SumSec { get; set; }
public virtual ChargingBill BillingNoNavigation { get; set; } = null!;
}