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.

119 lines
4.0 KiB
C#

using DS.Module.Core;
using DS.Module.Core.Data;
using SqlSugar;
namespace DS.WMS.Core.TaskPlat.Entity
{
/// <summary>
/// 货物运输计划已变更明细
///</summary>
[SugarTable("task_trans_plan_has_change_detail", "货物运输计划已变更明细")]
public class TaskTransPlanHasChangeDetail : BaseModelV2<long>
{
/// <summary>
/// 任务主键ID
/// </summary>
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)]
public long P_ID { get; set; }
/// <summary>
/// 计划方式 FROM-出运计划 TO-到达计划
/// </summary>
[SugarColumn(ColumnDescription = "计划方式 FROM-出运计划 TO-到达计划", IsNullable = true, Length = 20)]
public string? PLAN_TYPE { get; set; }
/// <summary>
/// 列表类型 PORT-港口信息 EATD-日期信息 VESSEL-船名航次信息
/// </summary>
[SugarColumn(ColumnDescription = "列表类型 PORT-港口信息 EATD-日期信息 VESSEL-船名航次信息", IsNullable = true, Length = 20)]
public string? COLUMN_TYPE { 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, Length = 100)]
public string? PORTLOAD { get; set; }
/// <summary>
/// 装货港国家
/// </summary>
[SugarColumn(ColumnDescription = "装货港国家", IsNullable = true, Length = 100)]
public string? PORTLOAD_COUNTRY { get; set; }
/// <summary>
/// 装货码头
/// </summary>
[SugarColumn(ColumnDescription = "装货码头", IsNullable = true, Length = 100)]
public string? PORTLOAD_TERMINAL { get; set; }
/// <summary>
/// 卸货港
/// </summary>
[SugarColumn(ColumnDescription = "卸货港", IsNullable = true, Length = 100)]
public string? PORTDISCHARGE { get; set; }
/// <summary>
/// 卸货港国家
/// </summary>
[SugarColumn(ColumnDescription = "卸货港国家", IsNullable = true, Length = 100)]
public string? PORTDISCHARGE_COUNTRY { get; set; }
/// <summary>
/// 卸货港码头
/// </summary>
[SugarColumn(ColumnDescription = "卸货港码头", IsNullable = true, Length = 100)]
public string? PORTDISCHARGE_TERMINAL { get; set; }
/// <summary>
/// 船旗
/// </summary>
[SugarColumn(ColumnDescription = "船旗", IsNullable = true, Length = 20)]
public string? SHIP_FLAG { get; set; }
/// <summary>
/// ETA(预计到港时间)
/// </summary>
[SugarColumn(ColumnDescription = "ETA(预计到港时间)", IsNullable = true)]
public DateTime? ETA { get; set; }
/// <summary>
/// ETD(预计离港时间)
/// </summary>
[SugarColumn(ColumnDescription = "ETD(预计离港时间)", IsNullable = true)]
public DateTime? ETD { get; set; }
/// <summary>
/// 顺序号
/// </summary>
[SugarColumn(ColumnDescription = "顺序号", IsNullable = true)]
public int? SORT_NO { get; set; }
/// <summary>
/// 集装箱号
/// </summary>
[SugarColumn(ColumnDescription = "集装箱号", IsNullable = true, Length = 50)]
public string? CONTA_NO { get; set; }
/// <summary>
/// 是否已弃用 1-已弃用 0-正使用
/// </summary>
[SugarColumn(ColumnDescription = "是否已弃用 1-已弃用 0-正使用", IsNullable = true, Length = 1)]
public bool? IS_REMOVED { get; set; }
}
}