海运出口提单信息添加AgentName字段

dev
cjy 2 weeks ago
parent eb63f7afb5
commit 35fdd42849

@ -127,6 +127,11 @@ namespace DS.WMS.Core.Op.Dtos
/// 代理人 t_info_client CUSTNAME
/// </summary>
public long? AgentId { get; set; }
/// <summary>
/// 代理人名称
/// </summary>
public string AgentName { get; set; }
/// <summary>
/// 代理人内容
/// </summary>

@ -126,6 +126,10 @@ namespace DS.WMS.Core.Op.Dtos
/// </summary>
public long? AgentId { get; set; }
/// <summary>
/// 代理人名称
/// </summary>
public string AgentName { get; set; }
/// <summary>
/// 代理人内容
/// </summary>
public string AgentContent { get; set; }

@ -141,6 +141,12 @@ public class SeaExportBillManage : BaseOrgModel<long>
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "代理人", IsNullable = true)]
public long? AgentId { get; set; }
/// <summary>
/// 代理人名称
/// </summary>
[SqlSugar.SugarColumn(ColumnDescription = "代理人名称", IsNullable = true, Length = 100)]
public string AgentName { get; set; }
/// <summary>
/// 代理人内容
/// </summary>

Loading…
Cancel
Save