using SqlSugar; namespace DS.WMS.Core.Fee.Entity { /// /// 付费申请 /// [SugarTable("fee_application", TableDescription = "付费申请")] public class FeeApplication : ApplicationBase { /// /// 客户ID /// [SugarColumn(ColumnDescription = "客户ID", IsNullable = false)] public long CustomerId { get; set; } /// /// 客户名称 /// [SugarColumn(ColumnDescription = "客户名称", Length = 200)] public string? CustomerName { get; set; } /// /// 结算方式 /// [SugarColumn(ColumnDescription = "结算方式")] public long? SettlementType { get; set; } /// /// 结算人 /// [SugarColumn(ColumnDescription = "结算人")] public long? SettlerId { get; set; } /// /// 结算人名称 /// [SugarColumn(ColumnDescription = "结算人名称", Length = 50)] public string? SettlerName { get; set; } /// /// 结算时间 /// [SugarColumn(ColumnDescription = "结算时间")] public DateTime? SettlementTime { get; set; } /// /// 支付申请人 /// [SugarColumn(ColumnDescription = "支付申请人")] public long? PaymentApplicantId { get; set; } // /// 支付申请人 /// [SugarColumn(ColumnDescription = "支付申请人名称", Length = 50)] public string? PaymentApplicantName { get; set; } /// /// 申请支付日期 /// [SugarColumn(ColumnDescription = "申请支付日期")] public DateTime? PaymentDate { get; set; } /// /// 支票备注 /// [SugarColumn(ColumnDescription = "支票备注", Length = 200)] public string? ChequeRemarks { get; set; } /// /// 发票号 /// [SugarColumn(ColumnDescription = "发票号")] public string? InvoiceNO { get; set; } /// /// 发票日期 /// [SugarColumn(ColumnDescription = "发票日期")] public DateTime? InvoiceDate { get; set; } /// /// 开票金额 /// [SugarColumn(ColumnDescription = "开票金额")] public decimal? InvoiceAmount { get; set; } /// /// 客户银行账号 /// [SugarColumn(ColumnDescription = "客户银行账号", Length = 100)] public string? CustomerBAN { get; set; } /// /// 所属分部 /// [SugarColumn(ColumnDescription = "所属分部")] public long? SaleDeptId { get; set; } } }