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.
60 lines
1.4 KiB
C#
60 lines
1.4 KiB
C#
using Myshipping.Application.Entity;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// 任务格式单
|
|
/// </summary>
|
|
[SugarTable("task_draft_info")]
|
|
[Description("任务格式单")]
|
|
public class TaskDraftInfo : TaskManageDbEntity
|
|
{
|
|
/// <summary>
|
|
/// 任务主键
|
|
/// </summary>
|
|
public string TASK_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 船公司
|
|
/// </summary>
|
|
public string CARRIER { get; set; }
|
|
|
|
/// <summary>
|
|
/// 主单号
|
|
/// </summary>
|
|
public string MBL_NO { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订舱ID
|
|
/// </summary>
|
|
public Nullable<long> BOOKING_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 已发消息提醒 1-已发 0-未发
|
|
/// </summary>
|
|
public bool IS_CHANGE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否邮件推送 1-已推送 0-未推送
|
|
/// </summary>
|
|
public bool IS_EMAIL_SEND { get; set; }
|
|
|
|
/// <summary>
|
|
/// 邮件推送时间
|
|
/// </summary>
|
|
public Nullable<DateTime> SEND_EMAIL_DATE { get; set; }
|
|
|
|
/// <summary>
|
|
/// 通知接收时间
|
|
/// </summary>
|
|
public Nullable<DateTime> NOTICE_DATE { get; set; }
|
|
}
|
|
}
|