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