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

master
douhandong 6 months ago
parent ee8393ceb3
commit 4ef0bb1be2

@ -201,5 +201,15 @@ namespace Myshipping.Application.Entity
/// 大简云用户Id
/// </summary>
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>
public string BatchStatic { get; set; }
/// <summary>
/// 平台代码
/// </summary>
public string SYSTEM_CODE { get; set; }
/// <summary>
/// 平台名称
/// </summary>
public string SYSTEM_NAME { get; set; }
/// <summary>
/// 费用明细当业务类型是INVOICE_BILL_MAIL-航次账单
/// </summary>

@ -352,9 +352,11 @@ namespace Myshipping.Application
CUSTOMER_ID = info.Main.CustomerId,
CUSTOMER_NAME = info.Main.CustomerName,
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,
};
long taskReqUserId = 0;

Loading…
Cancel
Save