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.1 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 : BaseModel<long>
{
/// <summary>
/// VGM任务主键
/// </summary>
[SugarColumn(ColumnDescription = "VGM任务主键", IsNullable = false ) ]
public long PId { get; set; }
/// <summary>
/// 主单号
/// </summary>
[SugarColumn(ColumnDescription = "主单号", IsNullable = true , Length = 64 ) ]
public string? MblNo { get; set; }
/// <summary>
/// 箱号
/// </summary>
[SugarColumn(ColumnDescription = "箱号", IsNullable = true , Length = 40 ) ]
public string? CtnNo { get; set; }
/// <summary>
/// 收货人
/// </summary>
[SugarColumn(ColumnDescription = "收货人", IsNullable = true , Length = 200 ) ]
public string? Cnee { get; set; }
/// <summary>
/// 卸货日期
/// </summary>
[SugarColumn(ColumnDescription = "卸货日期", IsNullable = true ) ]
public DateTime? DischargeDate { get; set; }
/// <summary>
/// 卸货港
/// </summary>
[SugarColumn(ColumnDescription = "卸货港", IsNullable = true , Length = 100 ) ]
public string? DischargePort { get; set; }
/// <summary>
/// 超期天数
/// </summary>
[SugarColumn(ColumnDescription = "超期天数", IsNullable = true ) ]
public int? OverdueDays { get; set; }
/// <summary>
/// 当前集装箱所在地
/// </summary>
[SugarColumn(ColumnDescription = "当前集装箱所在地", IsNullable = true , Length = 200 ) ]
public string? CurContaLocation { get; set; }
/// <summary>
/// 滞留费用
/// </summary>
[SugarColumn(ColumnDescription = "滞留费用", IsNullable = true , Length = 19 ) ]
public decimal? DetentionFeeTillDate { get; set; }
/// <summary>
/// 费用币别
/// </summary>
[SugarColumn(ColumnDescription = "费用币别", IsNullable = true , Length = 20 ) ]
public string? ChargeCurrency { get; set; }
/// <summary>
/// 订舱ID
/// </summary>
[SugarColumn(ColumnDescription = "订舱ID", IsNullable = true ) ]
public long? BookingId { get; set; }
/// <summary>
/// 已发消息提醒 1-已发 0-未发
/// </summary>
[SugarColumn(ColumnDescription = "已发消息提醒 1-已发 0-未发", IsNullable = true , Length = 1 ) ]
public long? IsNotice { get; set; }
/// <summary>
/// 消息提醒时间
/// </summary>
[SugarColumn(ColumnDescription = "消息提醒时间", IsNullable = true ) ]
public DateTime? SendNoticeDate { get; set; }
}
}