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