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.

263 lines
9.0 KiB
C#

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 : BaseModel<long>
{
/// <summary>
/// 任务主键ID
/// </summary>
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false ) ]
public long TaskId { get; set; }
/// <summary>
/// 主单号
/// </summary>
[SugarColumn(ColumnDescription = "主单号", IsNullable = true , Length = 64 ) ]
public string? MblNo { 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? TakeIssuetypeName { get; set; }
/// <summary>
/// 通知接收时间
/// </summary>
[SugarColumn(ColumnDescription = "通知接收时间", IsNullable = true ) ]
public DateTime? NoticeDate { 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? BookingId { get; set; }
/// <summary>
/// 截单上传时间
/// </summary>
[SugarColumn(ColumnDescription = "截单上传时间", IsNullable = true ) ]
public DateTime? SubmittedDate { get; set; }
/// <summary>
/// 提单份数
/// </summary>
[SugarColumn(ColumnDescription = "提单份数", IsNullable = true ) ]
public int? BillofNum { get; set; }
/// <summary>
/// 放单方式
/// </summary>
[SugarColumn(ColumnDescription = "放单方式", IsNullable = true , Length = 100 ) ]
public string? ReleaseInstruction { get; set; }
/// <summary>
/// 是否拆单 SPLIT-标识已拆单
/// </summary>
[SugarColumn(ColumnDescription = "是否拆单 SPLIT-标识已拆单", IsNullable = true , Length = 20 ) ]
public string? SiSubtype { 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? TransportReceiver { 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? ProcessStatus { get; set; }
/// <summary>
/// 是否设置了自动更新订舱
/// </summary>
[SugarColumn(ColumnDescription = "是否设置了自动更新订舱", IsNullable = true , Length = 1 ) ]
public long? IsSetAutoUpdBooking { get; set; }
/// <summary>
/// 处理结果
/// </summary>
[SugarColumn(ColumnDescription = "处理结果", IsNullable = true , Length = 500 ) ]
public string? ProcessResult { get; set; }
/// <summary>
/// 处理时间
/// </summary>
[SugarColumn(ColumnDescription = "处理时间", IsNullable = true ) ]
public DateTime? ProcessDate { get; set; }
/// <summary>
/// 比对差异数量
/// </summary>
[SugarColumn(ColumnDescription = "比对差异数量", IsNullable = true ) ]
public int? DiffNum { get; set; }
/// <summary>
/// 是否已更新订舱
/// </summary>
[SugarColumn(ColumnDescription = "是否已更新订舱", IsNullable = true , Length = 1 ) ]
public long? IsUpdateBooking { get; set; }
/// <summary>
/// 更新订舱时间
/// </summary>
[SugarColumn(ColumnDescription = "更新订舱时间", IsNullable = true ) ]
public DateTime? UpdateBookingDate { get; set; }
}
}