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 List NoticeList { get; set; }
}
///
///
///
public class TaskManageOrderCautionNoticeDetailInfo
{
///
/// 重要提醒消息类型
///
public CautionNoticeTypeEnum CautionNoticeType { get; set; }
///
/// 用户ID
///
public string UserId { get; set; }
///
/// 用户手机号
///
public string Mobile { get; set; }
}
}