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.
125 lines
3.9 KiB
C#
125 lines
3.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_ship", "任务预甩货船信息")]
|
|
public class TaskRollingNominationShip : BaseModelV2<long>
|
|
{
|
|
|
|
/// <summary>
|
|
/// 任务主键ID
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)]
|
|
public long TASK_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 父主键
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "父主键", IsNullable = false)]
|
|
public long NOM_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 船类型 From-原船,To-换船
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "船类型 From-原船,To-换船", IsNullable = true, Length = 20)]
|
|
public string? SHIP_TYPE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 船代码
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "船代码", IsNullable = true, Length = 50)]
|
|
public string? SHIP_STRING { get; set; }
|
|
|
|
/// <summary>
|
|
/// 船名代码(船公司)
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "船名代码(船公司)", IsNullable = true, Length = 64)]
|
|
public string? VSL_CODE { 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? PORT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 装货码头
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "装货码头", IsNullable = true, Length = 100)]
|
|
public string? TERMINAL { get; set; }
|
|
|
|
/// <summary>
|
|
/// 预计离港时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "预计离港时间", IsNullable = true)]
|
|
public DateTime? ETD { get; set; }
|
|
|
|
/// <summary>
|
|
/// 样单截止日期
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "样单截止日期", IsNullable = true)]
|
|
public DateTime? SI_CUT_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 截港时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "截港时间", IsNullable = true)]
|
|
public DateTime? CY_CUTOFF_TIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 截VGM时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "截VGM时间", IsNullable = true)]
|
|
public DateTime? VGM_CUTOFF_TIME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 截凭证时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "截凭证时间", IsNullable = true)]
|
|
public DateTime? VOUCHER_CUT_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 截关时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "截关时间", IsNullable = true)]
|
|
public DateTime? CLOSING_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 批量换船备注
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "批量换船备注", IsNullable = true, Length = 100)]
|
|
public string? BATCH_TRANSFER { get; set; }
|
|
|
|
/// <summary>
|
|
/// 分组KEY
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "分组KEY", IsNullable = true)]
|
|
public int? GROUP_INDX { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "备注", IsNullable = true, Length = 100)]
|
|
public string? REMARK { get; set; }
|
|
|
|
|
|
}
|
|
|
|
} |