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.
51 lines
1.5 KiB
C#
51 lines
1.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_ustFeeDui", "箱管_月结账单")]
|
|
public class CM_ustFeeDui : BaseOrgModel<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 = true, Length = 50)]
|
|
public string CustomerName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:租箱类型 1长租 0短租 2单程 CMRentTypeEnum
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "租箱类型", IsNullable = true, Length = 20, DefaultValue = "2")]
|
|
public string RentType { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:业务状态
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "业务状态", IsNullable = true, Length = 20)]
|
|
public string BillState { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// Desc:备注
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "备注", IsNullable = true, Length = 500)]
|
|
public string Remark { get; set; }
|
|
}
|
|
|