using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.TaskPlat.Dtos
{
///
/// 预甩通知
///
public class RollingNominationNoticeDto
{
///
/// 预甩任务ID
///
public long taskId { get; set; }
///
/// 模板ID
///
public long templateId { get; set; }
///
/// 是否允许没有订单发送通知
///
public bool isAllowNoBooking { get; set; } = false;
///
/// 手工发送预甩邮件接收人
///
public string manualNoticeEmail { get; set; }
///
/// 原船主键
///
public string fromShipPKId { get; set; }
///
/// 换船主键
///
public string toShipPKId { get; set; }
}
}