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.
79 lines
2.4 KiB
C#
79 lines
2.4 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.Code.Entity;
|
|
/// <summary>
|
|
/// 航线信息表
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("code_lanes","航线信息表")]
|
|
public class CodeLanes: BaseModel<long>
|
|
{
|
|
/// <summary>
|
|
/// 航线代码
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "航线代码", Length = 6)]
|
|
public string LaneCode { get; set; }
|
|
/// <summary>
|
|
/// 航线中文名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "航线中文名称", Length = 20)]
|
|
public string LaneName { get; set; }
|
|
/// <summary>
|
|
/// 航线英文名称
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "航线英文名称", Length = 20,IsNullable = true)]
|
|
public string LaneEnName { get; set; }
|
|
/// <summary>
|
|
/// 默认操作员
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "默认操作员",IsNullable = true)]
|
|
public long Operator { get; set; }
|
|
/// <summary>
|
|
/// 默认单证
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "默认单证",IsNullable = true)]
|
|
public long VouchingClerk { get; set; }
|
|
|
|
/// <summary>
|
|
/// 默认客服
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "默认客服",IsNullable = true)]
|
|
public long CustomerService { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 默认操作员
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "默认操作员", IsNullable = true, Length = 50)]
|
|
public string OperatorName { get; set; }
|
|
/// <summary>
|
|
/// 默认单证
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "默认单证", IsNullable = true, Length = 50)]
|
|
public string VouchingClerkName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 默认客服
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "默认客服", IsNullable = true,Length =50)]
|
|
public string CustomerServiceName { get; set; }
|
|
|
|
/// <summary>
|
|
/// EDI代码
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "EDI代码", Length = 30,IsNullable = true)]
|
|
public string EdiCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态 0启用 1禁用
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "状态",DefaultValue = "0")]
|
|
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
|
|
|
|
/// <summary>
|
|
/// 导入关联Id
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "导入关联Id", IsNullable = true,Length =100)]
|
|
public string LinkId { get; set; }
|
|
} |