人员类型未显示bug修复

liujun-2024-05-23-接口漏洞修复
liujun 2024-04-18 18:30:15 +08:00
parent 3dd180d333
commit a3f1eb9749
1 changed files with 1 additions and 1 deletions

View File

@ -890,7 +890,7 @@ public class MapController extends BaseController {
PageData userInfo = usersService.findById(condition);
HashMap<String, String> otherInfo = new HashMap<>();
otherInfo.put("postName", userInfo.getString("postName"));
otherInfo.put("personnelTypeName", userInfo.getString("personnelTypeName"));
otherInfo.put("personType", userInfo.getString("PERSON_TYPE"));
map.put("otherInfo", otherInfo);
return map;
}