using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 海运订舱或截单EDI请求
///
public class BookingOrClosingEDIOrderDto
{
///
/// 订单主键
///
/// 353244444368965
public long Id { get; set; }
///
/// 订单号
///
/// ES202211170001
public string orderNo { get; set; }
///
/// 是否使用货代代码
///
/// true
public bool useForwarderCode { get; set; }
///
/// 货代代码
///
/// ABC
public string forwarderCode { get; set; }
///
/// 货代名称
///
/// ABC
public string forwarderName { get; set; }
///
/// 文件功能 (9原始,1 更新,5 退舱 )
///
/// 9
public string fileRole { get; set; }
///
/// 发送类型 B-订舱 E-截单
///
/// B
public string sendType { get; set; } = "B";
///
/// 是否直接发送 (默认false)
///
/// true
public bool send { get; set; } = false;
///
/// 多行文本拆分记录ID(SITC-收、发、通拆分)
///
public Nullable multilineid { get; set; }
}
}