|
|
|
|
using DS.Module.Core;
|
|
|
|
|
using DS.Module.Core.Data;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
|
|
|
|
|
namespace DS.WMS.Core.TaskPlat.Entity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务预甩货通知
|
|
|
|
|
///</summary>
|
|
|
|
|
[SugarTable("task_rolling_nomination", "任务预甩货通知")]
|
|
|
|
|
public class TaskRollingNomination : BaseModel<long>
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务主键ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false ) ]
|
|
|
|
|
public long TaskId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 计划类型 Rolling-预甩货,Transfer-中转预甩
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "计划类型 Rolling-预甩货,Transfer-中转预甩", IsNullable = true , Length = 20 ) ]
|
|
|
|
|
public string? PlanType { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 批次号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "批次号", IsNullable = true , Length = 64 ) ]
|
|
|
|
|
public string? BatchNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 船公司代号
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "船公司代号", IsNullable = true , Length = 20 ) ]
|
|
|
|
|
public string? Carrierid { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 船公司
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "船公司", IsNullable = true , Length = 50 ) ]
|
|
|
|
|
public string? Carrier { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 最后确认期限日期
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "最后确认期限日期", IsNullable = true ) ]
|
|
|
|
|
public DateTime? ConfirmDeadLine { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 解析生成日期
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "解析生成日期", IsNullable = true ) ]
|
|
|
|
|
public DateTime? ReadCreateTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 含有二甩声明备注
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "含有二甩声明备注", IsNullable = true , Length = 200 ) ]
|
|
|
|
|
public string? RollDoubleRemark { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 预甩计划详情
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "预甩计划详情", IsNullable = true ) ]
|
|
|
|
|
public string? PlanTxt { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 备注
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "备注", IsNullable = true , Length = 100 ) ]
|
|
|
|
|
public string? Remark { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务批次明细合计
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "任务批次明细合计", IsNullable = true ) ]
|
|
|
|
|
public int? TaskBatchTotal { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务批次单票合计
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "任务批次单票合计", IsNullable = true ) ]
|
|
|
|
|
public int? TaskBatchPerTotal { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|