业务申请列表

master
shijie 4 years ago
parent d4ef18f4a1
commit a0f4e37d0e
  1. 4
      dq-financial-guarantee/src/main/java/com/daqing/financial/guarantee/controller/DgApplyAmountInfoController.java

@ -201,8 +201,8 @@ public class DgApplyAmountInfoController implements DgApplyAmountInfoControllerA
for (BusinessApplicationListResponse response:list) {
for(LinkedHashMap res : employeeMessage){
if(response.getPresenterId().equals(res.get("id"))){//如果提单人id相同情况下,就往对象里面赋值
response.setAccount(JSONObject.toJSONString(res.get("account")));
response.setDeptName(JSONObject.toJSONString(res.get("deptName")));
response.setAccount(JSONObject.toJSONString(res.get("account")).replace("\"",""));
response.setDeptName(JSONObject.toJSONString(res.get("deptName")).replace("\"",""));
}
}
}

Loading…
Cancel
Save