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.

95 lines
2.8 KiB
C#

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