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.

43 lines
970 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Dtos
{
/// <summary>
/// 舱位合并请求结果
/// </summary>
public class BookingSlotMergeResultDto
{
/// <summary>
/// 舱位明细
/// </summary>
public List<BookingSlotBaseWithCtnDto> slotDetailList { get; set; }
/// <summary>
/// 集装箱合计统计
/// </summary>
public string ctnStat { get; set; }
/// <summary>
/// 重要提醒
/// </summary>
public string importantNotes { get; set; }
}
public class QueryMergeSlotDto
{
/// <summary>
/// 合票主舱位ID
/// </summary>
public long MasterSlotId { get; set; }
/// <summary>
/// 合票舱位ID明细
/// </summary>
public List<long> MergeList { get; set; }
}
}