using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 重要提醒任务
///
public class TaskManageOrderCautionNoticeInfo
{
///
/// 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; }
///
/// 提单号
///
public string MBlNo { get; set; }
///
/// 船公司
///
public string Carrier { get; set; }
///
/// 来源系统
///
public string SourceSystem { get; set; }
///
/// 来源业务类型
///
public string SourceBusiType { get; set; }
///
/// 来源业务类型名称
///
public string SourceBusiTypeName { get; set; }
///
/// 通知内容
///
public string NotifyContent { get; set; }
///
/// 消息列表
///
public List NoticeList { get; set; }
}
///
///
///
public class TaskManageOrderCautionNoticeDetailInfo
{
///
/// 重要提醒消息类型
///
public CautionNoticeMethodEnum CautionNoticeType { get; set; }
///
/// 用户ID
///
public long UserId { get; set; }
///
/// 用户名称
///
public string UserName { get; set; }
///
/// 用户手机号
///
public string Mobile { get; set; }
///
/// 用户邮箱
///
public string Email { get; set; }
}
}