海运出口添加so备注、签单要求

usertest
cjy 3 months ago
parent adb1ea7adb
commit b148462ff1

@ -1197,6 +1197,16 @@ public class SeaExportReq
/// 船司航线
/// </summary>
public string CarrierLane { get; set; }
/// <summary>
/// SO备注
/// </summary>
public string SORemark { get; set; }
/// <summary>
/// 签单要求
/// </summary>
public string IssueRemark { get; set; }
}
/// <summary>

@ -1384,4 +1384,14 @@ public class SeaExportRes
/// 船司航线
/// </summary>
public string CarrierLane { get; set; }
/// <summary>
/// SO备注
/// </summary>
public string SORemark { get; set; }
/// <summary>
/// 签单要求
/// </summary>
public string IssueRemark { get; set; }
}

@ -864,9 +864,9 @@ public class SeaExport : BaseOrgModel<long>
public DateTime? CloseDocDate { get; set; }
/// <summary>
/// 截单备注
/// 截单备注(SI)
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "截单备注", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
[SqlSugar.SugarColumn(ColumnDescription = "截单备注(SI)", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string CloseDocRemark { get; set; }
/// <summary>
/// 订舱备注
@ -1569,4 +1569,16 @@ public class SeaExport : BaseOrgModel<long>
/// </summary>
[SugarColumn(ColumnDescription = "船司航线", IsNullable = true, Length = 100)]
public string CarrierLane { get; set; }
/// <summary>
/// SO备注
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "SO备注", IsNullable = true, ColumnDataType = StaticConfig.CodeFirst_BigString)]
public string SORemark { get; set; }
/// <summary>
/// 签单要求
/// </summary>
[SugarColumn(ColumnDescription = "签单要求", IsNullable = true, Length = 200)]
public string IssueRemark { get; set; }
}
Loading…
Cancel
Save