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.

107 lines
3.5 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using DS.Module.Core;
using DS.Module.Core.Data;
using SqlSugar;
namespace DS.WMS.Core.TaskPlat.Entity
{
/// <summary>
/// 任务VGM详情表
///</summary>
[SugarTable("task_vgm_info", "任务VGM详情表")]
public class TaskVgmInfo : BaseModelV2<long>
{
/// <summary>
/// 任务主键ID
/// </summary>
[SugarColumn(ColumnDescription = "任务主键ID", IsNullable = false)]
public long TASK_ID { get; set; }
/// <summary>
/// 主单号
/// </summary>
[SugarColumn(ColumnDescription = "主单号", IsNullable = true, Length = 64)]
public string? MBL_NO { get; set; }
/// <summary>
/// 船公司
/// </summary>
[SugarColumn(ColumnDescription = "船公司", IsNullable = true, Length = 50)]
public string? CARRIER { 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>
/// VGM最晚提交时间
/// </summary>
[SugarColumn(ColumnDescription = "VGM最晚提交时间", IsNullable = true)]
public DateTime? VGM_SUBMISSION_DEADLINE { get; set; }
/// <summary>
/// 参考号
/// </summary>
[SugarColumn(ColumnDescription = "参考号", IsNullable = true, Length = 64)]
public string? BOOKED_BY_REFERENCE { get; set; }
/// <summary>
/// 箱型箱量
/// </summary>
[SugarColumn(ColumnDescription = "箱型箱量", IsNullable = true, Length = 200)]
public string? CTN_STAT { get; set; }
/// <summary>
/// 通知接收时间
/// </summary>
[SugarColumn(ColumnDescription = "通知接收时间", IsNullable = true)]
public DateTime? NOTICE_DATE { get; set; }
/// <summary>
/// 订舱ID
/// </summary>
[SugarColumn(ColumnDescription = "订舱ID", IsNullable = true)]
public long? BOOKING_ID { get; set; }
/// <summary>
/// VGM通知类型 VGM_EXCEPT-VGM未提交VGM_FEEDBACK-VGM回执
/// </summary>
[SugarColumn(ColumnDescription = "VGM通知类型 VGM_EXCEPT-VGM未提交VGM_FEEDBACK-VGM回执", IsNullable = true, Length = 40)]
public string? TASK_TYPE { get; set; }
/// <summary>
/// 是否已发钉钉通知 1-是 0-否
/// </summary>
[SugarColumn(ColumnDescription = "是否已发钉钉通知 1-是 0-否", IsNullable = true, Length = 1)]
public UInt64? IS_DINGDING { get; set; }
/// <summary>
/// 最后发送时间
/// </summary>
[SugarColumn(ColumnDescription = "最后发送时间", IsNullable = true)]
public DateTime? LST_SEND_DINGDING_DATE { get; set; }
/// <summary>
/// 最后发送结果 SUCC-成功 FAIL-失败
/// </summary>
[SugarColumn(ColumnDescription = "最后发送结果 SUCC-成功 FAIL-失败", IsNullable = true, Length = 20)]
public string? LST_SEND_STATUS { get; set; }
}
}