Commit 31678ae9 authored by fengjie's avatar fengjie

修改变量名称

parent 26b1cadc
......@@ -16,7 +16,7 @@ public class ActiveApplyOrder {
*/
private Long num;
private String channelNo;
private String channelOrderNo;
private Long userId;
......
......@@ -446,7 +446,7 @@ public class UserServiceImpl implements IUserService {
JsonResult<Map<String, String>> mapJsonResult = kaService.findChannelOrderNosByApplyOrderNos(applyOrderNoList);
if (mapJsonResult.isSuccess()) {
Map<String, String> data = mapJsonResult.getData();
activeApplyOrders.forEach(e -> e.setChannelNo(data.get(e.getApplyOrderNo())));
activeApplyOrders.forEach(e -> e.setChannelOrderNo(data.get(e.getApplyOrderNo())));
}
}
......@@ -456,7 +456,7 @@ public class UserServiceImpl implements IUserService {
JsonResult<Map<String, String>> mapJsonResult = kaService.findChannelOrderNosByApplyOrderNos(applyOrderNoList);
if (mapJsonResult.isSuccess()) {
Map<String, String> data = mapJsonResult.getData();
invalidApplyOrders.forEach(e -> e.setChannelNo(data.get(e.getApplyOrderNo())));
invalidApplyOrders.forEach(e -> e.setChannelOrderNo(data.get(e.getApplyOrderNo())));
}
}
UserBasicInfo userBasicInfo = userInfo.getData();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment