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.
|
|
|
|
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_route_change_advisory_detail")]
|
|
|
|
|
[Description("航线船舶截止时间调整的通知处理明细")]
|
|
|
|
|
public class TaskRouteChangeAdvisoryDetailInfo : TaskManageDbEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 父主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string P_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<long> BOOKING_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否已转发客户 1-是 0-否
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
|
|
|
|
public bool IS_TRANSFER_USER { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 最后转发客户邮件时间
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<DateTime> LST_TRANSFER_USER_DATE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 最后转发客户邮件结果
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string LST_TRANSFER_NOTES { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 最后转发客户邮件状态 TEMP-暂存 SUCC-发送成功 FAILURE-发送失败
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string LST_STATUS { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 最后转发客户邮件状态名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string LST_STATUS_NAME { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 提单号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string MBL_NO { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否有效 1-有效 0-失效
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IS_ENABLE { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|