You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
104 lines
3.0 KiB
C#
104 lines
3.0 KiB
C#
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.Fee.Entity
|
|
{
|
|
/// <summary>
|
|
/// 付费申请
|
|
/// </summary>
|
|
[SugarTable("fee_application", TableDescription = "付费申请")]
|
|
public class FeeApplication : ApplicationBase
|
|
{
|
|
/// <summary>
|
|
/// 客户ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "客户ID", IsNullable = false)]
|
|
public long CustomerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客户名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "客户名称", Length = 200)]
|
|
public string? CustomerName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结算方式
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "结算方式")]
|
|
public long? SettlementType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结算人
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "结算人")]
|
|
public long? SettlerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结算人名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "结算人名称", Length = 50)]
|
|
public string? SettlerName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结算时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "结算时间")]
|
|
public DateTime? SettlementTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 支付申请人
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "支付申请人")]
|
|
public long? PaymentApplicantId { get; set; }
|
|
|
|
// <summary>
|
|
/// 支付申请人
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "支付申请人名称", Length = 50)]
|
|
public string? PaymentApplicantName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 申请支付日期
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "申请支付日期")]
|
|
public DateTime? PaymentDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 支票备注
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "支票备注", Length = 200)]
|
|
public string? ChequeRemarks { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发票号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "发票号")]
|
|
public string? InvoiceNO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发票日期
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "发票日期")]
|
|
public DateTime? InvoiceDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开票金额
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "开票金额")]
|
|
public decimal? InvoiceAmount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 客户银行账号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "客户银行账号", Length = 100)]
|
|
public string? CustomerBAN { get; set; }
|
|
|
|
/// <summary>
|
|
/// 所属分部
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "所属分部")]
|
|
public long? SaleDeptId { get; set; }
|
|
|
|
}
|
|
|
|
}
|