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.
80 lines
2.5 KiB
C#
80 lines
2.5 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.ContainerManagement.Info.Entity;
|
|
|
|
/// <summary>
|
|
/// 箱管_月结账单
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("CM_CustFeeDui", "箱管_月结账单")]
|
|
public class CM_CustFeeDui : BaseOrgModelV2<long>
|
|
{
|
|
/// <summary>
|
|
/// Desc:月结账单编号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "月结账单编号", IsNullable = false, Length = 20)]
|
|
public string Billno { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结算对象Id
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "结算对象Id", IsNullable = false, DefaultValue = "0")]
|
|
public long CustomerId { get; set; }
|
|
/// <summary>
|
|
/// 结算对象 t_info_client CUSTNAME
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "结算对象", IsNullable = false, Length = 50)]
|
|
public string CustomerName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:开始日期
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "开始日期", IsNullable = true)]
|
|
public DateTime BillStartDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:结束日期
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "结束日期", IsNullable = true)]
|
|
public DateTime BillEndDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 会计期间
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "会计期间", IsNullable = true, Length = 7)]
|
|
public string ACCDATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 收付类型(收、付) 1应收 2 应付
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "收付类型(收、付)", DefaultValue = "1")]
|
|
public FeeType FeeType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 总金额
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "总金额", IsNullable = true, Length = 20, DecimalDigits = 2)]
|
|
public decimal? AMOUNT { get; set; }
|
|
|
|
///// <summary>
|
|
///// Desc:是否业务锁定
|
|
///// </summary>
|
|
//[SugarColumn(ColumnDescription = "是否业务锁定", IsNullable = false, DefaultValue = "0")]
|
|
//public bool? IsBusinessLocking { get; set; } = false;
|
|
///// <summary>
|
|
///// Desc:是否费用锁定
|
|
///// </summary>
|
|
//[SugarColumn(ColumnDescription = "是否费用锁定", IsNullable = false, DefaultValue = "0")]
|
|
//public bool? IsFeeLocking { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// Desc:备注
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "备注", IsNullable = true, Length = 500)]
|
|
public string Remark { get; set; }
|
|
|
|
|
|
}
|
|
|