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 Myshipping.Application
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 海运订舱或截单EDI请求
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class BookingOrClosingEDIOrderDto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订单主键
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <example>353244444368965</example>
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 订单号
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <example>ES202211170001</example>
|
|
|
|
|
public string orderNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否使用货代代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <example>true</example>
|
|
|
|
|
public bool useForwarderCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 货代代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <example>ABC</example>
|
|
|
|
|
public string forwarderCode { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 货代名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <example>ABC</example>
|
|
|
|
|
public string forwarderName { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 文件功能 (9原始,1 更新,5 退舱 )
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <example>9</example>
|
|
|
|
|
public string fileRole { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 发送类型 B-订舱 E-截单
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <example>B</example>
|
|
|
|
|
public string sendType { get; set; } = "B";
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否直接发送 (默认false)
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <example>true</example>
|
|
|
|
|
public bool send { get; set; } = false;
|
|
|
|
|
}
|
|
|
|
|
}
|