|
|
|
@ -6,6 +6,9 @@ using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务BC集装箱
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class TaskBCCTNInfoDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
@ -18,30 +21,64 @@ namespace Myshipping.Application
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string PID { get; set; }
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
PK_ID varchar(64) not null comment '惟一主键',
|
|
|
|
|
P_ID varchar(64) not null comment '父主键',
|
|
|
|
|
CTNCODE varchar(20) comment '箱型代码',
|
|
|
|
|
CTNALL varchar(20) comment '箱型',
|
|
|
|
|
CTNNUM int comment '箱量',
|
|
|
|
|
PKGS int comment '件数',
|
|
|
|
|
CBM decimal(18,4) comment '尺码',
|
|
|
|
|
KGS decimal(18,4) comment '毛重',
|
|
|
|
|
TAREWEIGHT decimal(18,4) comment '皮重',
|
|
|
|
|
IODGT varchar(64) comment '危品票标示',
|
|
|
|
|
SPECIAL_LOADING_REQUIRE varchar(64) comment '特殊装载需求',
|
|
|
|
|
TAKE_CTN_YARD varchar(64) comment '提箱场站',
|
|
|
|
|
TAKE_CTN_TIME datetime comment '提箱时间',
|
|
|
|
|
RETURN_CTN_YARD varchar(64) comment '还箱场站',
|
|
|
|
|
CreatedTime datetime comment '创建时间',
|
|
|
|
|
UpdatedTime datetime comment '修改时间',
|
|
|
|
|
CreatedUserId bigint comment '创建人ID',
|
|
|
|
|
CreatedUserName varchar(50) comment '创建人名称',
|
|
|
|
|
UpdatedUserId bigint comment '修改人ID',
|
|
|
|
|
UpdatedUserName varchar(50) comment '修改人名称',
|
|
|
|
|
IsDeleted bit comment '删除标志 1-已作废 0-未作废',
|
|
|
|
|
TenantId bigint comment '租户ID',
|
|
|
|
|
TenantName varchar(200) comment '租户名称'
|
|
|
|
|
*/
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 箱型代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CtnCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 箱型
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CtnALL { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 箱量
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<int> CTNNUM { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 件数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<int> PKGS { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 尺码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<decimal> CBM { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 毛重
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<decimal> KGS { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 皮重
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<decimal> TareWeight { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 危品票标示
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string IODGT { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 特殊装载需求
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SpecialLoadingRequire { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 提箱场站
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string TakeCTNYard { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 提箱时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<DateTime> TakeCTNTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 还箱场站
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ReturnCTNYard { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|