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.
ds8-solution-pro/ds-wms-service/DS.WMS.Core/Op/Dtos/BookingOrClosingEDIOrderReq.cs

62 lines
1.6 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Dtos
{
/// <summary>
/// 海运订舱或截单EDI请求
/// </summary>
public class BookingOrClosingEDIOrderReq
{
/// <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;
}
}