using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
public class TaskCautionNoticeShowDto
{
///
/// 主键
///
public string PKId { get; set; }
///
/// WeekAt-计费周差异 PriceCalcDate-计费周差异
///
public string cautionNoticeType { get; set; }
//
/// WeekAt-计费周差异 PriceCalcDate-计费周差异
///
public string cautionNoticeTypeName { get; set; }
///
/// 订舱ID
///
public Nullable bookingId { get; set; }
///
/// 舱位ID
///
public Nullable bookingSlotId { get; set; }
///
/// 提单号
///
public string mblNo { get; set; }
///
/// 任务ID
///
public string taskPKId { get; set; }
///
/// 创建日期
///
public DateTime createTime { get; set; }
///
/// 原值
///
public string origVal { get; set; }
///
/// 新值
///
public string newVal { get; set; }
///
/// 通知内容
///
public string notifyContent { get; set; }
///
/// 船公司
///
public string carrier { get; set; }
///
/// 船名
///
public string vessel { get; set; }
///
/// 航次
///
public string voyno { get; set; }
///
/// ETD
///
public string etd { get; set; }
///
/// 委托客户ID
///
public Nullable customerId { get; set; }
///
/// 委托客户名称
///
public string customerName { get; set; }
}
}