using DS.Module.Core;
using DS.Module.Core.Data;
using SqlSugar;
namespace DS.WMS.Core.TaskPlat.Entity
{
///
/// 任务BC的集装箱信息
///
[SugarTable("task_bc_ctn_info", "任务BC的集装箱信息")]
public class TaskBCCTNInfo : BaseModelV2
{
///
/// BC任务主键
///
[SugarColumn(ColumnDescription = "BC任务主键", IsNullable = false)]
public long P_ID { get; set; }
///
/// 箱型代码
///
[SugarColumn(ColumnDescription = "箱型代码", IsNullable = true, Length = 20)]
public string? CTNCODE { get; set; }
///
/// 箱型
///
[SugarColumn(ColumnDescription = "箱型", IsNullable = true, Length = 20)]
public string? CTNALL { get; set; }
///
/// 箱量
///
[SugarColumn(ColumnDescription = "箱量", IsNullable = true)]
public int? CTNNUM { get; set; }
///
/// 件数
///
[SugarColumn(ColumnDescription = "件数", IsNullable = true)]
public int? PKGS { get; set; }
///
/// 尺码
///
[SugarColumn(ColumnDescription = "尺码", IsNullable = true, Length = 18)]
public decimal? CBM { get; set; }
///
/// 毛重
///
[SugarColumn(ColumnDescription = "毛重", IsNullable = true, Length = 18)]
public decimal? KGS { get; set; }
///
/// 皮重
///
[SugarColumn(ColumnDescription = "皮重", IsNullable = true, Length = 18)]
public decimal? TAREWEIGHT { get; set; }
///
/// 危品票标示
///
[SugarColumn(ColumnDescription = "危品票标示", IsNullable = true, Length = 64)]
public string? IODGT { get; set; }
///
/// 特殊装载需求
///
[SugarColumn(ColumnDescription = "特殊装载需求", IsNullable = true, Length = 64)]
public string? SPECIAL_LOADING_REQUIRE { get; set; }
///
/// 提箱场站
///
[SugarColumn(ColumnDescription = "提箱场站", IsNullable = true, Length = 64)]
public string? TAKE_CTN_YARD { get; set; }
///
/// 提箱时间
///
[SugarColumn(ColumnDescription = "提箱时间", IsNullable = true)]
public DateTime? TAKE_CTN_TIME { get; set; }
///
/// 还箱场站
///
[SugarColumn(ColumnDescription = "还箱场站", IsNullable = true, Length = 64)]
public string? RETURN_CTN_YARD { get; set; }
}
}