using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
public class CautionNoticeTaskDto
{
///
/// WeekAt-计费周差异 PriceCalcDate-计费周差异
///
public CautionNoticeTaskEnum cautionNoticeType { get; set; }
///
/// 订舱ID
///
public Nullable bookingId { get; set; }
///
/// 舱位ID
///
public Nullable bookingSlotId { get; set; }
///
/// 任务ID
///
public string taskPKId { get; set; }
///
/// 创建日期
///
public DateTime createTime { get; set; }
///
/// 原值
///
public string origVal { get; set; }
///
/// 新值
///
public string newVal { get; set; }
///
/// 租户ID
///
public long tenentId { get; set; }
///
/// 租户名称
///
public string tenentName { get; set; }
///
/// 用户ID
///
public long userId { get; set; }
///
/// 用户名称
///
public string userName { get; set; }
///
/// 提单号
///
public string mblNo { get; set; }
///
/// 通知内容
///
public string notifyContent { get; set; }
///
/// 船公司
///
public string carrier { get; set; }
///
/// 来源系统
///
public string sourceSystem { get; set; }
///
/// 来源业务类型
///
public string sourceBusiType { get; set; }
///
/// 来源业务类型名称
///
public string sourceBusiTypeName { get; set; }
///
/// 船名
///
public string vessel { get; set; }
///
/// 航次
///
public string voyno { get; set; }
///
/// ETD
///
public Nullable etd { get; set; }
///
/// 委托客户ID
///
public Nullable customerId { get; set; }
///
/// 委托客户名称
///
public string customerName { get; set; }
///
/// 通知人列表
///
public List notifyList { get; set; }
///
/// 是否自动转发通知
///
public bool isAutoSendNotice { get; set; }
///
/// VGM截止时间原始值
///
public string VGMCutOldVal { get; set; }
///
/// VGM截止时间修改值
///
public string VGMCutNewVal { get; set; }
///
/// SI截止时间原始值
///
public string SICutOldVal { get; set; }
///
/// SI截止时间修改值
///
public string SICutNewVal { get; set; }
///
/// 直达变中转原值
///
public string DirectToTransOldVal { get; set; }
///
/// 直达变中转修改值
///
public string DirectToTransNewVal { get; set; }
///
/// 船名原始值
///
public string VesselOldVal { get; set; }
///
/// 船名修改值
///
public string VesselNewVal { get; set; }
///
/// 航次原始值
///
public string VoynoOldVal { get; set; }
///
/// 航次修改值
///
public string VoynoNewVal { get; set; }
///
/// 是否计费周差异 1-是 0-否
///
public bool IsWeekDiff { get; set; }
///
/// 是否计费日差异 1-是 0-否
///
public bool IsPriceDateDiff { get; set; }
///
/// 是否转为中转 1-是 0-否
///
public bool IsTransfer { get; set; }
///
/// 是否船名变化 1-是 0-否
///
public bool IsVesselChange { get; set; }
///
/// 是否截止时间提前 1-是 0-否
///
public bool IsCutDateAdvanced { get; set; }
}
///
/// 通知人详情
///
public class CautionNoticeTaskNoitfyDto
{
///
/// 通知人ID
///
public long notifyUserId { get; set; }
///
/// 通知人名称
///
public string notifyUserName { get; set; }
///
/// 通知方式
///
public CautionNoticeMethodEnum[] notifyMethod { get; set; }
///
/// 通知人手机
///
public string notifyMobile { get; set; }
///
/// 通知人邮箱
///
public string notifyEmail { get; set; }
}
}