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.
BookingHeChuan/Myshipping.Application/Service/BookingSlot/Dto/BookingSlotMergeResultDto.cs

30 lines
698 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application.Service.BookingSlot.Dto
{
/// <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; }
}
}