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.

98 lines
2.4 KiB
C#

using Myshipping.Application.Entity;
using NPOI.SS.Formula.Functions;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
/// 任务VGM详情表
/// </summary>
[SugarTable("task_vgm_info")]
[Description("任务VGM详情表")]
public class TaskVGMInfo : TaskManageDbEntity
{
/// <summary>
/// 任务主键
/// </summary>
public string TASK_ID { get; set; }
/// <summary>
/// 主单号
/// </summary>
public string MBL_NO { get; set; }
/// <summary>
/// 船公司
/// </summary>
public string CARRIER { get; set; }
/// <summary>
/// 船名
/// </summary>
public string VESSEL { get; set; }
/// <summary>
/// 航次
/// </summary>
public string VOYNO { get; set; }
/// <summary>
/// 航次
/// </summary>
public string PORTLOAD { get; set; }
/// <summary>
/// VGM最晚提交时间
/// </summary>
public Nullable<DateTime> VGM_SUBMISSION_DEADLINE { get; set; }
/// <summary>
/// 参考号
/// </summary>
public string BOOKED_BY_REFERENCE { get; set; }
/// <summary>
/// 箱型箱量
/// </summary>
public string CTN_STAT { get; set; }
/// <summary>
/// 通知接收时间
/// </summary>
public Nullable<DateTime> NOTICE_DATE { get; set; }
/// <summary>
/// 订舱ID
/// </summary>
public Nullable<long> BOOKING_ID { get; set; }
9 months ago
/// <summary>
/// VGM通知类型 VGM_EXCEPT-VGM未提交VGM_FEEDBACK-VGM回执
9 months ago
/// </summary>
public string TASK_TYPE { get; set; }
/// <summary>
/// 是否已发钉钉通知 1-是 0-否
/// </summary>
public bool IS_DINGDING { get; set; }
/// <summary>
/// 最后发送时间
/// </summary>
public Nullable<DateTime> LST_SEND_DINGDING_DATE { get; set; }
/// <summary>
/// 最后发送结果 SUCC-成功 FAIL-失败
/// </summary>
public string LST_SEND_STATUS { get; set; }
}
}