海运出口Edi信息添加SO 和 SI 备注

dev
cjy 3 weeks ago
parent 7e765dd12d
commit 13c2e6852c

@ -193,7 +193,15 @@ namespace DS.WMS.Core.Op.Dtos
/// CNPTNo
/// </summary>
public string CNPTNo { get; set; }
/// <summary>
/// SO备注
/// </summary>
public string SORemark { get; set; }
/// <summary>
/// SI备注
/// </summary>
public string SIRemark { get; set; }
}
}

@ -189,6 +189,14 @@ namespace DS.WMS.Core.Op.Dtos
/// </summary>
public string EmcNameAccount { get; set; }
/// <summary>
/// SO备注
/// </summary>
public string SORemark { get; set; }
/// <summary>
/// SI备注
/// </summary>
public string SIRemark { get; set; }
}
}

@ -1834,13 +1834,6 @@ public class SeaExport : BaseOrgModel<long>
[SugarColumn(ColumnDescription = "船司航线", IsNullable = true, Length = 100)]
public string CarrierLane { get; set; }
/// <summary>
/// SO备注
/// </summary>
[Description("SO备注")]
[SqlSugar.SugarColumn(ColumnDescription = "SO备注", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string SORemark { get; set; }
/// <summary>
/// 签单要求
/// </summary>

@ -220,4 +220,19 @@ public class SeaExportEdi: BaseModel<long>
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "CNPTNo", IsNullable = true, Length = 50)]
public string CNPTNo { get; set; }
/// <summary>
/// SO备注
/// </summary>
[Description("SO备注")]
[SqlSugar.SugarColumn(ColumnDescription = "SO备注", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string SORemark { get; set; }
/// <summary>
/// SI备注
/// </summary>
[Description("SI备注")]
[SqlSugar.SugarColumn(ColumnDescription = "SI备注", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string SIRemark { get; set; }
}
Loading…
Cancel
Save