using Myshipping.Application.Service.BookingSlot.Dto; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 舱位拆合票的请求 /// public class BookingSlotMergeOrSplitRequestDto { /// /// 引入的舱位列表 /// public List Slots { get; set; } /// /// 操作类型 split-拆票 merge-合票 /// public string OperType { get; set; } /// /// 订舱ID /// public Nullable bookingId { get; set; } /// /// 合票最终选择舱位ID OperType=merge /// public Nullable mergeSlotId { get; set; } /// /// 舱位提单号 选择舱位提单号 OperType=merge /// public string slotBookingNo { get; set; } } /// /// 舱位拆合票的回执 /// public class BookingSlotMergeOrSplitResultDto { /// /// 订舱编号 /// public string BookingReferNo { get; set; } /// /// 新提单号 /// public string NewMBlNo { get; set; } /// /// 新分单号 /// public string NewSubBlNo { get; set; } } }