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.

171 lines
6.0 KiB
C#

using DS.Module.Core;
using DS.Module.Core.Data;
using SqlSugar;
namespace DS.WMS.Core.Code.Entity;
/// <summary>
/// EDI参数设置信息表
/// </summary>
[SqlSugar.SugarTable("code_edi_set", "EDI参数设置信息表")]
public class CodeEdiSet : BaseModel<long>
{
/// <summary>
/// EDI类型代码
/// </summary>
[SugarColumn(ColumnDescription = "EDI类型代码", Length = 40)]
public string EdiTypeCode { get; set; }
/// <summary>
/// EDI类型名称
/// </summary>
[SugarColumn(ColumnDescription = "EDI类型名称", Length = 40)]
public string EdiName { get; set; }
/// <summary>
/// 服务器IP
/// </summary>
[SugarColumn(ColumnDescription = "服务器IP", Length = 40, IsNullable = true)]
public string ServerIp { get; set; }
/// <summary>
/// 文件夹
/// </summary>
[SugarColumn(ColumnDescription = "文件夹", Length = 40,IsNullable = true)]
public string FolderName { get; set; }
/// <summary>
/// 用户名
/// </summary>
[SugarColumn(ColumnDescription = "用户名", Length = 40, IsNullable = true)]
public string UserName { get; set; }
/// <summary>
/// 密码
/// </summary>
[SugarColumn(ColumnDescription = "密码", Length = 40, IsNullable = true)]
public string Password { get; set; }
/// <summary>
/// 发送方代码
/// </summary>
[SugarColumn(ColumnDescription = "发送方代码", Length = 40, IsNullable = true)]
public string SendCode { get; set; }
/// <summary>
/// 接收方代码
/// </summary>
[SugarColumn(ColumnDescription = "接收方代码", Length = 40, IsNullable = true)]
public string ReceiveCode { get; set; }
/// <summary>
/// 发送方名称
/// </summary>
[SugarColumn(ColumnDescription = "发送方名称", Length = 100, IsNullable = true)]
public string SendName { get; set; }
/// <summary>
/// 发送方联系人
/// </summary>
[SugarColumn(ColumnDescription = "发送方联系人", Length = 40, IsNullable = true)]
public string SendAttn { get; set; }
/// <summary>
/// 发送方电话
/// </summary>
[SugarColumn(ColumnDescription = "发送方电话", Length = 40, IsNullable = true)]
public string SendTel { get; set; }
/// <summary>
/// 发送方邮箱
/// </summary>
[SugarColumn(ColumnDescription = "发送方邮箱", Length = 40, IsNullable = true)]
public string SendEmail { get; set; }
/// <summary>
/// 发送方公司代码
/// </summary>
[SugarColumn(ColumnDescription = "发送方公司代码", Length = 40, IsNullable = true)]
public string SendCompanyCode { get; set; }
/// <summary>
/// 发送方部门代码
/// </summary>
[SugarColumn(ColumnDescription = "发送方公司代码", Length = 40, IsNullable = true)]
public string SendSubCompanyCode { get; set; }
/// <summary>
/// 船公司代码
/// </summary>
[SugarColumn(ColumnDescription = "船公司代码", Length = 40, IsNullable = true)]
public string CarrierCode { get; set; }
/// <summary>
/// 船公司名称
/// </summary>
[SugarColumn(ColumnDescription = "船公司名称", Length = 100, IsNullable = true)]
public string CarrierName { get; set; }
/// <summary>
/// 船公司Id
/// </summary>
[SugarColumn(ColumnDescription = "船公司Id", DefaultValue ="0", IsNullable = true)]
public long? CarrierId { get; set; }
/// <summary>
/// 接收方邮箱
/// </summary>
[SugarColumn(ColumnDescription = "接收方邮箱", IsNullable = true, Length = 100)]
public string ReceiveEmail { get; set; }
/// <summary>
/// 接收方SI邮箱
/// </summary>
[SugarColumn(ColumnDescription = "接收方SI邮箱", IsNullable = true, Length = 100)]
public string ReceiveSiEmail { get; set; }
/// <summary>
/// 接收方操作
/// </summary>
[SugarColumn(ColumnDescription = "接收方操作", IsNullable = true, Length = 40)]
public string ReceiveOp { get; set; }
/// <summary>
/// 接收方销售
/// </summary>
[SugarColumn(ColumnDescription = "接收方销售", IsNullable = true, Length = 40)]
public string ReceiveSale { get; set; }
/// <summary>
/// 接收方部门
/// </summary>
[SugarColumn(ColumnDescription = "接收方部门", IsNullable = true, Length = 40)]
public string ReceiveDept { get; set; }
/// <summary>
/// 发送人电话
/// </summary>
[SugarColumn(ColumnDescription = "发送人电话", IsNullable = true, Length = 40)]
public string ShipperTel { get; set; }
/// <summary>
/// 收货人电话
/// </summary>
[SugarColumn(ColumnDescription = "收货人电话", IsNullable = true, Length = 40)]
public string ConsigneeTel { get; set; }
/// <summary>
/// 通知人电话
/// </summary>
[SugarColumn(ColumnDescription = "通知人电话", IsNullable = true, Length = 40)]
public string NotifypartyTel { get; set; }
///// <summary>
///// 是否设置TEL
///// </summary>
//public string ISUSETEL { get; set; }
/// <summary>
/// 发送类型
/// </summary>
[SugarColumn(ColumnDescription = "发送类型", IsNullable = true, Length = 10)]
public string SendType { get; set; }
/// <summary>
/// 发送方别名
/// </summary>
[SugarColumn(ColumnDescription = "发送方别名", IsNullable = true, Length = 40)]
public string AliasSendCode { get; set; }
/// <summary>
/// 发货方代码
/// </summary>
[SugarColumn(ColumnDescription = "发货方代码", IsNullable = true,Length = 40)]
public string SendShipperCode { get; set; }
/// <summary>
/// FTP主动模式
/// </summary>
[SugarColumn(ColumnDescription = "FTP主动模式", DefaultValue = "0")]
public bool FtpModeActive { get; set; }
/// <summary>
/// 状态 0启用 1禁用
/// </summary>
[SugarColumn(ColumnDescription = "状态", DefaultValue = "0")]
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
}