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