|
|
|
|
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_caution_notice_whole_ship")]
|
|
|
|
|
[Description("重要任务提醒整船通知")]
|
|
|
|
|
public class TaskCautionNoticeWholeShipInfo : TaskManageDbEntity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 任务主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string TASK_ID { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 船公司
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string CARRIER { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否计费周差异 1-是 0-否
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IS_WEEK_DIFF { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否计费日差异 1-是 0-否
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IS_PRICE_DATE_DIFF { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否转为中转 1-是 0-否
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IS_TRANSFER { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否船名变化 1-是 0-否
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IS_VESSEL_CHANGE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否截止时间提前 1-是 0-否
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IS_CUT_DATE_ADVANCED { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// VGM截止时间原始值
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string VGM_CUT_OLD_VAL { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// VGM截止时间修改值
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string VGM_CUT_NEW_VAL { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// SI截止时间原始值
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SI_CUT_OLD_VAL { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// SI截止时间修改值
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SI_CUT_NEW_VAL { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 直达变中转原值
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string DIRECT_TO_TRANS_OLD_VAL { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 直达变中转修改值
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string DIRECT_TO_TRANS_NEW_VAL { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 船名原始值
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string VESSEL_OLD_VAL { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 船名修改值
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string VESSEL_NEW_VAL { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 航次原始值
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string VOYNO_OLD_VAL { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 航次修改值
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string VOYNO_NEW_VAL { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 原始值MD5
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string OLD_VAL_MD5 { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 统计日期
|
|
|
|
|
/// </summary>
|
|
|
|
|
public Nullable<int> STAT_DAY { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|