Commit 036df639b32060d65716119b9670d13a6f4ec774

Authored by Administrator
1 parent 15c2939743
Exists in master and in 1 other branch dev

update

Showing 1 changed file with 4 additions and 4 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/FolviteServiceImpl.java View file @ 036df63
... ... @@ -273,8 +273,8 @@
273 273 m.put("domicileCity", map.get("domicile_city"));
274 274 m.put("domicileCountry", map.get("domicile_country"));
275 275 m.put("domicileProvince", map.get("domicile_province"));
276   - m.put("address", CommonsHelper.getResidence(map.get("domicile_province").toString(), map.get("domicile_city").toString(),
277   - map.get("domicile_area").toString(), map.get("domicile_country").toString(), map.get("domicile_address").toString(), basicConfigService));
  276 + m.put("address", CommonsHelper.getResidence((String) map.get("domicile_province"), (String) map.get("domicile_city"),
  277 + (String) map.get("domicile_area"), (String) map.get("domicile_country"), (String) map.get("domicile_address"), basicConfigService));
278 278 m.put("issuer", map.get("issuer"));
279 279 m.put("issuerName", usersService.getUsers(Integer.valueOf(map.get("issuer").toString())).getName());
280 280 m.put("phone", map.get("phone"));
... ... @@ -310,8 +310,8 @@
310 310 m.put("cardNo", map.get("card_no"));
311 311 m.put("phone", map.get("phone"));
312 312 m.put("name", map.get("name"));
313   - m.put("address", CommonsHelper.getResidence(map.get("habitation_province").toString(), map.get("habitation_city").toString(),
314   - map.get("habitation_area").toString(), map.get("habitation_country").toString(), map.get("habitation_address").toString(), basicConfigService));
  313 + m.put("address", CommonsHelper.getResidence((String) map.get("habitation_province"), (String) map.get("habitation_city"),
  314 + (String) map.get("habitation_area"), (String) map.get("habitation_country"), (String) map.get("habitation_address"), basicConfigService));
315 315 m.put("id", map.get("id"));
316 316 m.put("folviteId", map.get("folviteId"));
317 317