using DS.Module.Core;
using DS.Module.Core.Data;
using DS.Module.SqlSugar;
using SqlSugar;
namespace DS.WMS.ContainerManagement.Info.Entity;
///
/// 箱管_集装箱基本信息
///
[SqlSugar.SugarTable("CM_BaseInfo", "箱管_集装箱基本信息")]
public class CM_BaseInfo : BaseOrgModel
{
///
/// Desc:集装箱号
///
[SugarColumn(ColumnDescription = "集装箱号", IsNullable = false, Length = 20)]
public string Cntrno { get; set; }
///
/// 箱型代码
///
[SqlSugar.SugarColumn(ColumnDescription = "箱型代码", Length = 10, IsNullable = true)]
public string CtnCode { get; set; }
///
/// Desc:箱型
///
[SugarColumn(ColumnDescription = "箱型", IsNullable = false, Length = 20)]
public string Ctnall { get; set; }
///
/// Desc:箱皮重
///
[SugarColumn(ColumnDescription = "箱皮重", IsNullable = true, Length = 20, DecimalDigits = 2)]
public decimal? CtnWeight { get; set; }
///
/// Desc:箱生产日期
///
[SugarColumn(ColumnDescription = "箱生产日期", IsNullable = true)]
public DateTime? ProductionDate { get; set; }
///
/// Desc:备注
///
[SugarColumn(ColumnDescription = "备注", IsNullable = true, Length = 500)]
public string Remark { get; set; }
///
/// Desc:原始价值
///
[SugarColumn(ColumnDescription = "原始价值", IsNullable = true, Length = 20, DecimalDigits = 2)]
public decimal? CtnValue_Base { get; set; }
///
/// Desc:购入价格
///
[SugarColumn(ColumnDescription = "购入价格", IsNullable = true, Length = 20, DecimalDigits = 2)]
public decimal? CtnValue_BuyingPrice { get; set; }
}