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 System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace DS.WMS.Core.Op.Dtos.VGM
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
///
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class VgmSendReqDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订单主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
public long BookingId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否发送云港通
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool isDjyVGMYGTApi { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否MSK VGM API 直发
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool isMSKVGMApi { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否船公司 VGM 接口直发
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool isCarrierVGMApi { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否大简云船公司直发
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool isDjyVGMCarrierApi { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|