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#
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_cut_date_change_info", "任务截止时间变更通知")]
|
|
public class TaskCutDateChangeInfo : BaseModel<long>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 任务主键ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false ) ]
|
|
public long TaskId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 船公司
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "船公司", IsNullable = true , Length = 50 ) ]
|
|
public string? Carrier { 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 ) ]
|
|
public DateTime? NoticeDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 主单号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "主单号", IsNullable = true , Length = 64 ) ]
|
|
public string? MblNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订舱ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "订舱ID", IsNullable = true ) ]
|
|
public long? BookingId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 舱位主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "舱位主键", IsNullable = true ) ]
|
|
public long? BookingSlotId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 装货港区域 NORTH_PORT-华北港口 SOUTH-华南港口
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "装货港区域 NORTH_PORT-华北港口 SOUTH-华南港口", IsNullable = true , Length = 20 ) ]
|
|
public string? PortloadArea { get; set; }
|
|
|
|
/// <summary>
|
|
/// 原因
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "原因", IsNullable = true , Length = 1000 ) ]
|
|
public string? Reason { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务批次明细合计
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "任务批次明细合计", IsNullable = true ) ]
|
|
public int? TaskBatchTotal { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务批次单票合计
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "任务批次单票合计", IsNullable = true ) ]
|
|
public int? TaskBatchPerTotal { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务批次号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "任务批次号", IsNullable = true , Length = 64 ) ]
|
|
public string? TaskBatchNo { get; set; }
|
|
|
|
|
|
}
|
|
|
|
} |