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
3.0 KiB
C#
95 lines
3.0 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.TaskPlat.Entity
|
|
{
|
|
/// <summary>
|
|
/// 任务目的港未提货未返箱明细
|
|
///</summary>
|
|
[SugarTable("task_pod_discharge_gateout_full_detail", "任务目的港未提货未返箱明细")]
|
|
public class TaskPodDischargeGateoutFullDetail : BaseModelV2<long>
|
|
{
|
|
|
|
/// <summary>
|
|
/// VGM任务主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "VGM任务主键", IsNullable = false)]
|
|
public long P_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 主单号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "主单号", IsNullable = true, Length = 64)]
|
|
public string? MBL_NO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "箱号", IsNullable = true, Length = 40)]
|
|
public string? CTN_NO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 收货人
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "收货人", IsNullable = true, Length = 200)]
|
|
public string? CNEE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 卸货日期
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "卸货日期", IsNullable = true)]
|
|
public DateTime? DISCHARGE_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 卸货港
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "卸货港", IsNullable = true, Length = 100)]
|
|
public string? DISCHARGE_PORT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 超期天数
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "超期天数", IsNullable = true)]
|
|
public int? OVERDUE_DAYS { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前集装箱所在地
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "当前集装箱所在地", IsNullable = true, Length = 200)]
|
|
public string? CUR_CONTA_LOCATION { get; set; }
|
|
|
|
/// <summary>
|
|
/// 滞留费用
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "滞留费用", IsNullable = true, Length = 19)]
|
|
public decimal? DETENTION_FEE_TILL_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 费用币别
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "费用币别", IsNullable = true, Length = 20)]
|
|
public string? CHARGE_CURRENCY { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订舱ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "订舱ID", IsNullable = true)]
|
|
public long? BOOKING_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 已发消息提醒 1-已发 0-未发
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "已发消息提醒 1-已发 0-未发", IsNullable = true, Length = 1)]
|
|
public UInt64? IS_NOTICE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 消息提醒时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "消息提醒时间", IsNullable = true)]
|
|
public DateTime? SEND_NOTICE_DATE { get; set; }
|
|
|
|
|
|
}
|
|
|
|
} |