using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { public class QueryMergeSlotDto { /// /// 合票主舱位ID /// public long MasterSlotId { get; set; } /// /// 合票舱位ID明细 /// public List MergeList { get; set; } } }