任务台添加数据增加平台代码平台名称字段

master
douhandong 6 months ago
parent ee8393ceb3
commit 4ef0bb1be2

@ -201,5 +201,15 @@ namespace Myshipping.Application.Entity
/// 大简云用户Id /// 大简云用户Id
/// </summary> /// </summary>
public string DJYUserId { get; set; } public string DJYUserId { get; set; }
/// <summary>
/// 平台代码
/// </summary>
public string SYSTEM_CODE { get; set; }
/// <summary>
/// 平台名称
/// </summary>
public string SYSTEM_NAME { get; set; }
} }
} }

@ -165,6 +165,16 @@ namespace Myshipping.Application
/// </summary> /// </summary>
public string BatchStatic { get; set; } public string BatchStatic { get; set; }
/// <summary>
/// 平台代码
/// </summary>
public string SYSTEM_CODE { get; set; }
/// <summary>
/// 平台名称
/// </summary>
public string SYSTEM_NAME { get; set; }
/// <summary> /// <summary>
/// 费用明细当业务类型是INVOICE_BILL_MAIL-航次账单 /// 费用明细当业务类型是INVOICE_BILL_MAIL-航次账单
/// </summary> /// </summary>

@ -352,7 +352,9 @@ namespace Myshipping.Application
CUSTOMER_ID = info.Main.CustomerId, CUSTOMER_ID = info.Main.CustomerId,
CUSTOMER_NAME = info.Main.CustomerName, CUSTOMER_NAME = info.Main.CustomerName,
BATCH_STATIC = info.Main.BatchStatic, BATCH_STATIC = info.Main.BatchStatic,
DJYUserId = info.Head.DJYUserId DJYUserId = info.Head.DJYUserId,
SYSTEM_CODE = info.Main.SYSTEM_CODE,
SYSTEM_NAME = info.Main.SYSTEM_NAME,
}; };

Loading…
Cancel
Save