Commit e5a6075a34e830def0035d22b6527a63f06d082b
1 parent
99358a944d
Exists in
master
and in
1 other branch
code update
Showing 1 changed file with 1 additions and 1 deletions
platform-biz-patient-service/src/main/java/com/lyms/platform/biz/JdbcUtil.java
View file @
e5a6075
... | ... | @@ -140,7 +140,7 @@ |
140 | 140 | List<Map<String, Object>> usersList = getMysqlListDataBySql("select id,name from users where org_id = 216 "); |
141 | 141 | for (Map<String, Object> map : usersList) { |
142 | 142 | System.out.println(map); |
143 | - users.put(getString(map.get("NAME")), getString(map.get("ID"))); | |
143 | + users.put(getString(map.get("name")), getString(map.get("id"))); | |
144 | 144 | } |
145 | 145 | System.out.println("users------" + users.size()); |
146 | 146 |