using DS.Module.Core;
using DS.Module.Core.Data;
using DS.Module.Core.Enums;
using SqlSugar;
namespace DS.WMS.ContainerManagement.Info.Entity;
///
/// 箱管_报废
///
[SqlSugar.SugarTable("CM_CtnScrap", "箱管_报废")]
public class CM_CtnScrap : BaseOrgModelV2
{
///
/// Desc:业务号
///
[SugarColumn(ColumnDescription = "业务号", IsNullable = false, Length = 20)]
public string Billno { get; set; }
///
/// Desc:业务状态
///
[SugarColumn(ColumnDescription = "业务状态", IsNullable = true, Length = 10)]
public string BillState { get; set; }
///
/// Desc:所有箱号
///
[SugarColumn(ColumnDescription = "所有箱号", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string CntrnoAll { get; set; }
///
/// Desc:原箱主Id
///
[SqlSugar.SugarColumn(ColumnDescription = "原箱主Id", IsNullable = true, DefaultValue = "0")]
public long? OldContainerOwnerId { get; set; }
///
/// Desc:原箱主
///
[SugarColumn(ColumnDescription = "原箱主", IsNullable = true, Length = 50)]
public string OldContainerOwner { get; set; }
///
/// Desc:业务日期
///
[SugarColumn(ColumnDescription = "业务日期", IsNullable = true)]
public DateTime? Bsdate { get; set; }
///
/// Desc:会计期间
///
[SugarColumn(ColumnDescription = "会计期间", IsNullable = true, Length = 7)]
public string Accdate { get; set; }
///
/// Desc:全部箱
///
[SugarColumn(ColumnDescription = "全部箱", IsNullable = true, Length = 200)]
public string Ctntotal { get; set; }
///
/// Desc:已提箱
///
[SugarColumn(ColumnDescription = "已提箱", IsNullable = true, Length = 200)]
public string PickupCtntotal { get; set; }
///
/// Desc:未提箱
///
[SugarColumn(ColumnDescription = "未提箱", IsNullable = true, Length = 200)]
public string RemainCtntotal { get; set; }
///
/// Desc:备注
///
[SugarColumn(ColumnDescription = "备注", IsNullable = true, Length = 500)]
public string Remark { get; set; }
}