|
|
using DS.Module.Core;
|
|
|
using DS.Module.Core.Data;
|
|
|
using SqlSugar;
|
|
|
|
|
|
namespace DS.WMS.Core.TaskPlat.Entity
|
|
|
{
|
|
|
/// <summary>
|
|
|
/// 任务截单回执
|
|
|
///</summary>
|
|
|
[SugarTable("task_si_submitted", "任务截单回执")]
|
|
|
public class TaskSiSubmitted : BaseModelV2<long>
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
/// 任务主键ID
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)]
|
|
|
public long TASK_ID { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 主单号
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "主单号", IsNullable = true, Length = 64)]
|
|
|
public string? MBL_NO { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 船公司
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "船公司", IsNullable = true, Length = 50)]
|
|
|
public string? CARRIER { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 提取签单方式名称
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "提取签单方式名称", IsNullable = true, Length = 100)]
|
|
|
public string? TAKE_ISSUETYPE_NAME { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 通知接收时间
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "通知接收时间", IsNullable = true)]
|
|
|
public DateTime? NOTICE_DATE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 签单方式
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "签单方式", IsNullable = true, Length = 20)]
|
|
|
public string? ISSUETYPE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 订舱ID
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "订舱ID", IsNullable = true)]
|
|
|
public long? BOOKING_ID { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 截单上传时间
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "截单上传时间", IsNullable = true)]
|
|
|
public DateTime? SUBMITTED_DATE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 提单份数
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "提单份数", IsNullable = true)]
|
|
|
public int? BILLOF_NUM { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 放单方式
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "放单方式", IsNullable = true, Length = 100)]
|
|
|
public string? RELEASE_INSTRUCTION { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 是否拆单 SPLIT-标识已拆单
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "是否拆单 SPLIT-标识已拆单", IsNullable = true, Length = 20)]
|
|
|
public string? SI_SUBTYPE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 发货人
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "发货人", IsNullable = true)]
|
|
|
public string? SHIPPER { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 收货人
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "收货人", IsNullable = true)]
|
|
|
public string? CONSIGNEE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 通知人
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "通知人", IsNullable = true)]
|
|
|
public string? NOTIFYPARTY { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 第二通知人
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "第二通知人", IsNullable = true)]
|
|
|
public string? NOTIFYPARTY2 { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 订舱方
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "订舱方", IsNullable = true)]
|
|
|
public string? TRANSPORT_RECEIVER { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 唛头
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "唛头", IsNullable = true)]
|
|
|
public string? MARKS { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// HS代码
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "HS代码", IsNullable = true, Length = 20)]
|
|
|
public string? HSCODE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 货描
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "货描", IsNullable = true)]
|
|
|
public string? DESCRIPTION { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 件数
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "件数", IsNullable = true)]
|
|
|
public int? PKGS { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 包装
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "包装", IsNullable = true, Length = 20)]
|
|
|
public string? KINDPKGS { 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? CBM { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 船名
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "船名", IsNullable = true, Length = 30)]
|
|
|
public string? VESSEL { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 海关航次
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "海关航次", IsNullable = true, Length = 20)]
|
|
|
public string? VOYNO { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 商品名称
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "商品名称", IsNullable = true, Length = 200)]
|
|
|
public string? COMMODITY { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 收货地代码
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "收货地代码", IsNullable = true, Length = 5)]
|
|
|
public string? PLACERECEIPTID { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 收货地
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "收货地", IsNullable = true, Length = 60)]
|
|
|
public string? PLACERECEIPT { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 起运港代码
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "起运港代码", IsNullable = true, Length = 5)]
|
|
|
public string? PORTLOADID { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 起运港
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "起运港", IsNullable = true, Length = 60)]
|
|
|
public string? PORTLOAD { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
///
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "", IsNullable = true, Length = 5)]
|
|
|
public string? PORTDISCHARGEID { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 卸货港
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "卸货港", IsNullable = true, Length = 60)]
|
|
|
public string? PORTDISCHARGE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 交货地代码
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "交货地代码", IsNullable = true, Length = 5)]
|
|
|
public string? PLACEDELIVERYID { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 交货地
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "交货地", IsNullable = true, Length = 60)]
|
|
|
public string? PLACEDELIVERY { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 处理状态 TEMP-待处理,SUCC-处理成功,FAILURE-失败
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "处理状态 TEMP-待处理,SUCC-处理成功,FAILURE-失败", IsNullable = true, Length = 20)]
|
|
|
public string? PROCESS_STATUS { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 是否设置了自动更新订舱
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "是否设置了自动更新订舱", IsNullable = true, Length = 1)]
|
|
|
public Nullable<bool> IS_SET_AUTO_UPD_BOOKING { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 处理结果
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "处理结果", IsNullable = true, Length = 500)]
|
|
|
public string? PROCESS_RESULT { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 处理时间
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "处理时间", IsNullable = true)]
|
|
|
public DateTime? PROCESS_DATE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 比对差异数量
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "比对差异数量", IsNullable = true)]
|
|
|
public int? DIFF_NUM { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 是否已更新订舱
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "是否已更新订舱", IsNullable = true, Length = 1)]
|
|
|
public Nullable<bool> IS_UPDATE_BOOKING { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 更新订舱时间
|
|
|
/// </summary>
|
|
|
[SugarColumn(ColumnDescription = "更新订舱时间", IsNullable = true)]
|
|
|
public DateTime? UPDATE_BOOKING_DATE { get; set; }
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
} |