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>
|
|
|
|
|
/// VGM
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class CheckVGMShowDto
|
|
|
|
|
{
|
|
|
|
|
/// <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; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|