|
|
|
@ -49,6 +49,17 @@ public class CodePort: BaseModel<long>
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "航线Id",IsNullable = true)]
|
|
|
|
|
public long LaneId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 航线代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "航线代码", IsNullable = true, Length = 100)]
|
|
|
|
|
public string LaneCode { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 航线
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarColumn(ColumnDescription = "航线", IsNullable = true, Length = 100)]
|
|
|
|
|
public string Lane { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// EDI代码
|
|
|
|
|
/// </summary>
|
|
|
|
|