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.

72 lines
2.3 KiB
C#

4 months ago
using DS.Module.Core;
using DS.Module.Core.Data;
using SqlSugar;
namespace DS.WMS.ContainerManagement.Info.Entity;
/// <summary>
/// 箱管_月结账单
/// </summary>
4 months ago
[SqlSugar.SugarTable("CM_CustFeeDui", "箱管_月结账单")]
public class CM_CustFeeDui : BaseOrgModel<long>
4 months ago
{
/// <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>
4 months ago
[SqlSugar.SugarColumn(ColumnDescription = "结算对象", IsNullable = false, Length = 50)]
4 months ago
public string CustomerName { get; set; }
/// <summary>
4 months ago
/// Desc:开始日期
4 months ago
/// </summary>
4 months ago
[SugarColumn(ColumnDescription = "开始日期", IsNullable = true)]
public DateTime? BillStartDate { get; set; }
4 months ago
/// <summary>
4 months ago
/// Desc:结束日期
4 months ago
/// </summary>
4 months ago
[SugarColumn(ColumnDescription = "结束日期", IsNullable = true)]
public DateTime? BillEndDate { get; set; }
4 months ago
4 months ago
/// <summary>
/// 会计期间
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "会计期间", IsNullable = true, Length = 7)]
public string ACCDATE { get; set; }
/// <summary>
/// 总金额
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "总金额", IsNullable = true, Length = 20)]
public decimal? AMOUNT { get; set; }
4 months ago
4 months ago
/// <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;
4 months ago
/// <summary>
/// Desc:备注
/// </summary>
[SugarColumn(ColumnDescription = "备注", IsNullable = true, Length = 500)]
public string Remark { get; set; }
}