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.
55 lines
1.7 KiB
C#
55 lines
1.7 KiB
C#
using DS.Module.Core;
|
|
using DS.Module.Core.Data;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.Code.Entity;
|
|
/// <summary>
|
|
/// 航线信息表
|
|
/// </summary>
|
|
[SqlSugar.SugarTable("op_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>
|
|
/// EDI代码
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "EDI代码", Length = 5,IsNullable = true)]
|
|
public string EdiCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 状态 0启用 1禁用
|
|
/// </summary>
|
|
[SugarColumn(ColumnDescription = "状态",DefaultValue = "0")]
|
|
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
|
|
} |