using DS.Module.Core;
using DS.Module.Core.Data;
using SqlSugar;
namespace DS.WMS.Core.Code.Entity;
///
/// 航线信息表
///
[SqlSugar.SugarTable("op_code_lanes","航线信息表")]
public class CodeLanes: BaseModel
{
///
/// 航线代码
///
[SugarColumn(ColumnDescription = "航线代码", Length = 6)]
public string LaneCode { get; set; }
///
/// 航线中文名称
///
[SugarColumn(ColumnDescription = "航线中文名称", Length = 20)]
public string LaneName { get; set; }
///
/// 航线英文名称
///
[SugarColumn(ColumnDescription = "航线英文名称", Length = 20,IsNullable = true)]
public string LaneEnName { get; set; }
///
/// 默认操作员
///
[SugarColumn(ColumnDescription = "默认操作员",IsNullable = true)]
public long Operator { get; set; }
///
/// 默认单证
///
[SugarColumn(ColumnDescription = "默认单证",IsNullable = true)]
public long VouchingClerk { get; set; }
///
/// 默认客服
///
[SugarColumn(ColumnDescription = "默认客服",IsNullable = true)]
public long CustomerService { get; set; }
///
/// EDI代码
///
[SugarColumn(ColumnDescription = "EDI代码", Length = 5,IsNullable = true)]
public string EdiCode { get; set; }
///
/// 状态 0启用 1禁用
///
[SugarColumn(ColumnDescription = "状态",DefaultValue = "0")]
public StatusEnum? Status { get; set; } = StatusEnum.Enable;
}