jianghaiqing 4 months ago
commit 943a2bed19

@ -1,5 +1,6 @@
using DS.Module.Core; using DS.Module.Core;
using FluentValidation; using FluentValidation;
using SqlSugar;
namespace DS.WMS.Core.Code.Dtos; namespace DS.WMS.Core.Code.Dtos;
@ -47,6 +48,14 @@ public class CodePortReq
/// </summary> /// </summary>
public long LaneId { get; set; }= 0; public long LaneId { get; set; }= 0;
/// <summary> /// <summary>
/// 航线代码
/// </summary>
public string LaneCode { get; set; }
/// <summary>
/// 航线
/// </summary>
public string Lane { get; set; }
/// <summary>
/// EDI代码 /// EDI代码
/// </summary> /// </summary>
public string EdiCode { get; set; } = ""; public string EdiCode { get; set; } = "";

@ -1,4 +1,5 @@
using DS.Module.Core; using DS.Module.Core;
using SqlSugar;
namespace DS.WMS.Core.Code.Dtos; namespace DS.WMS.Core.Code.Dtos;
@ -45,6 +46,14 @@ public class CodePortRes
/// </summary> /// </summary>
public long LaneId { get; set; }= 0; public long LaneId { get; set; }= 0;
/// <summary> /// <summary>
/// 航线代码
/// </summary>
public string LaneCode { get; set; }
/// <summary>
/// 航线
/// </summary>
public string Lane { get; set; }
/// <summary>
/// EDI代码 /// EDI代码
/// </summary> /// </summary>
public string EdiCode { get; set; } = ""; public string EdiCode { get; set; } = "";

@ -26,6 +26,19 @@ public class CodePortSelectRes
/// </summary> /// </summary>
public string EdiCode { get; set; } public string EdiCode { get; set; }
/// <summary>
/// 航线Id
/// </summary>
public long LaneId { get; set; }
/// <summary>
/// 航线代码
/// </summary>
public string LaneCode { get; set; }
/// <summary>
/// 航线
/// </summary>
public string Lane { get; set; }
/// <summary> /// <summary>
/// 助记码 /// 助记码
/// </summary> /// </summary>

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

@ -1153,6 +1153,11 @@ public class SeaExportReq
/// 签单地点代码 /// 签单地点代码
/// </summary> /// </summary>
public string IssuePlaceCode { get; set; } public string IssuePlaceCode { get; set; }
/// <summary>
/// 航线代码
/// </summary>
public string LaneCode { get; set; }
} }
/// <summary> /// <summary>

@ -1349,4 +1349,9 @@ public class SeaExportRes
/// 签单地点代码 /// 签单地点代码
/// </summary> /// </summary>
public string IssuePlaceCode { get; set; } public string IssuePlaceCode { get; set; }
/// <summary>
/// 航线代码
/// </summary>
public string LaneCode { get; set; }
} }

@ -570,6 +570,11 @@ public class SeaExport : BaseOrgModel<long>
[SugarColumn(ColumnDescription = "航线Id", IsNullable = true, DefaultValue = "0")] [SugarColumn(ColumnDescription = "航线Id", IsNullable = true, DefaultValue = "0")]
public long LaneId { get; set; } public long LaneId { get; set; }
/// <summary>
/// 航线代码
/// </summary>
[SugarColumn(ColumnDescription = "航线代码", IsNullable = true, Length = 100)]
public string LaneCode { get; set; }
/// <summary> /// <summary>
/// 航线 /// 航线
/// </summary> /// </summary>

Loading…
Cancel
Save