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 DS.WMS.Core.Op.Dtos;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace DS.WMS.Core.TaskPlat.Dtos
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 生成订舱或者舱位请求
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class BookingOrSlotGenerateDto : BookingGenerateDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// BC任务主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long BCTaskId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// BC主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long BCPkId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 生成方式(GEN_BOOKING_SLOT-生成舱位和订舱;GEN_BOOKING-只生成订舱;GEN_SLOT-只生成舱位;GEN_EXIST_BOOKING-匹配指定的订舱;UPD_BOOKING-更新订舱)
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string GenerateMethod { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否默认使用用户个人邮箱发送 false-使用公共邮箱 true-使用个人邮箱
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool usePersonalEmailSend { get; set; } = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//public class CustomerContact
|
|
|
|
|
//{
|
|
|
|
|
// /// <summary>
|
|
|
|
|
// /// 委托单位联系人ID
|
|
|
|
|
// /// </summary>
|
|
|
|
|
// public long CustomerContactId { get; set; }
|
|
|
|
|
|
|
|
|
|
// /// <summary>
|
|
|
|
|
// /// 委托单位联系人名称
|
|
|
|
|
// /// </summary>
|
|
|
|
|
// public string CustomerContactName { get; set; }
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
}
|