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.
63 lines
1.5 KiB
C#
63 lines
1.5 KiB
C#
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
|
|
{
|
|
/// <summary>
|
|
/// 舱位拆合票的请求
|
|
/// </summary>
|
|
public class BookingSlotMergeOrSplitRequestDto
|
|
{
|
|
/// <summary>
|
|
/// 引入的舱位列表
|
|
/// </summary>
|
|
public List<BookingSlotBaseWithCtnDto> Slots { get; set; }
|
|
|
|
/// <summary>
|
|
/// 操作类型 split-拆票 merge-合票
|
|
/// </summary>
|
|
public string OperType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订舱ID
|
|
/// </summary>
|
|
public Nullable<long> bookingId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 合票最终选择舱位ID OperType=merge
|
|
/// </summary>
|
|
public Nullable<long> mergeSlotId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 舱位提单号 选择舱位提单号 OperType=merge
|
|
/// </summary>
|
|
public string slotBookingNo { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 舱位拆合票的回执
|
|
/// </summary>
|
|
public class BookingSlotMergeOrSplitResultDto
|
|
{
|
|
/// <summary>
|
|
/// 订舱编号
|
|
/// </summary>
|
|
public string BookingReferNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 新提单号
|
|
/// </summary>
|
|
public string NewMBlNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 新分单号
|
|
/// </summary>
|
|
public string NewSubBlNo { get; set; }
|
|
}
|
|
}
|