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.
|
|
|
|
using Myshipping.Application.Service.BookingSlot.Dto;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订舱主表输出参数
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class BookingOrderOutput : BookingOrderDto
|
|
|
|
|
{
|
|
|
|
|
public List<BookingOrderDto> HbList { get; set; }
|
|
|
|
|
public BookingOrderUrlOutput Link { get; set; }
|
|
|
|
|
public List<BookingSlotBaseWithCtnDto> Slots { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 客户订舱需求ID
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long? CustomerOrderId { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class BookingOrderUrlOutput
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 提箱小票链接
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string LinkUrlTxxp { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// vgm链接
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string LinkUrlVgm { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// vgm&si链接
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string LinkUrlVmgSi { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|