using Myshipping.Application.EDI; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// EDI基类 /// public class EDIBaseModel { /// /// 发送方代码 M /// public string SENDCODE { get; set; } /// /// 发送方名称 M /// public string SENDNAME { get; set; } /// /// 接收方代码 M /// public string RECEIVECODE { get; set; } /// /// 文件类型 (B订舱,E SI确认)M /// public string filetype { get; set; } /// /// 文件功能 (9原始,1 更新,5 退舱 )M /// public string filerole { get; set; } /// /// 文件路径 M /// public string filerpath { get; set; } /// /// 是否使用货代代码。 M /// public bool UseForWarderCode { get; set; } /// /// 货代代码。 O /// public string ForWarderCode { get; set; } /// /// 货代名称 O /// public string ForWarderName { get; set; } /// /// 业务信息列表 M /// public List BSLIST { get; set; } /// /// 发送方公司代码 /// public string SENDCOMPANYCODE { get; set; } /// /// 发送方部门代码 /// public string SENDSUBCOMPANYCODE { get; set; } /// /// 发送方别名代码 /// public string ALIASSENDCODE { get; set; } /// /// 发货方代码 /// public string SENDSHIPPERCODE { get; set; } } }