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.
82 lines
2.4 KiB
C#
82 lines
2.4 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using DS.Module.Core.Enums;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.ContainerManagement.Info.Entity;
|
|
|
|
/// <summary>
|
|
/// 箱管_卖箱
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("CM_SellCtn", "箱管_卖箱")]
|
|
public class CM_SellCtn : BaseOrgModelV2<long>
|
|
{
|
|
/// <summary>
|
|
/// Desc:租箱业务号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "卖箱业务号", IsNullable = false, Length = 20)]
|
|
public string Billno { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:业务状态
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "业务状态", IsNullable = true, Length = 10)]
|
|
public string BillState { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:所有箱号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "所有箱号", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
|
|
public string CntrnoAll { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:购箱箱主Id
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(ColumnDescription = "购箱箱主Id", IsNullable = true, DefaultValue = "0")]
|
|
public long? BuyContainerOwnerId { get; set; }
|
|
/// <summary>
|
|
/// Desc:购箱箱主
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "购箱箱主", IsNullable = true, Length = 50)]
|
|
public string BuyContainerOwner { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// Desc:业务日期
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "业务日期", IsNullable = true)]
|
|
public DateTime? Bsdate { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:会计期间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "会计期间", IsNullable = true, Length = 7)]
|
|
public string Accdate { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// Desc:全部箱
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "全部箱", IsNullable = true, Length = 200)]
|
|
public string Ctntotal { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:已提箱
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "已提箱", IsNullable = true, Length = 200)]
|
|
public string PickupCtntotal { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:未提箱
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "未提箱", IsNullable = true, Length = 200)]
|
|
public string RemainCtntotal { get; set; }
|
|
|
|
/// <summary>
|
|
/// Desc:备注
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "备注", IsNullable = true, Length = 500)]
|
|
public string Remark { get; set; }
|
|
}
|
|
|