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.
89 lines
2.9 KiB
C#
89 lines
2.9 KiB
C#
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 : BaseModelV2<long>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 任务主键ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)]
|
|
public long TASK_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 计划类型 Rolling-预甩货,Transfer-中转预甩
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "计划类型 Rolling-预甩货,Transfer-中转预甩", IsNullable = true, Length = 20)]
|
|
public string? PLAN_TYPE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 批次号
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "批次号", IsNullable = true, Length = 64)]
|
|
public string? BATCH_NO { 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? CONFIRM_DEAD_LINE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 解析生成日期
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "解析生成日期", IsNullable = true)]
|
|
public DateTime? READ_CREATE_TIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 含有二甩声明备注
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "含有二甩声明备注", IsNullable = true, Length = 200)]
|
|
public string? ROLL_DOUBLE_REMARK { get; set; }
|
|
|
|
/// <summary>
|
|
/// 预甩计划详情
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "预甩计划详情", IsNullable = true)]
|
|
public string? PLAN_TXT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "备注", IsNullable = true, Length = 100)]
|
|
public string? REMARK { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务批次明细合计
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "任务批次明细合计", IsNullable = true)]
|
|
public int? TASK_BATCH_TOTAL { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务批次单票合计
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "任务批次单票合计", IsNullable = true)]
|
|
public int? TASK_BATCH_PER_TOTAL { get; set; }
|
|
|
|
|
|
}
|
|
|
|
} |