You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 预甩通知
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class RollingNominationNoticeDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 预甩任务ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string taskId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 模板ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long templateId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否允许没有订单发送通知
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool isAllowNoBooking { get; set; } = false;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 手工发送预甩邮件接收人
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string manualNoticeEmail { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 原船主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string fromShipPKId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 换船主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string toShipPKId { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|