Commit 42d6c0dceba56e9d655da319d8b64389a51b8939
1 parent
5e6ab6efa3
Exists in
master
and in
6 other branches
高危等级查询
Showing 1 changed file with 17 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/TestController.java
View file @
42d6c0d
... | ... | @@ -358,6 +358,23 @@ |
358 | 358 | } |
359 | 359 | |
360 | 360 | |
361 | + @RequestMapping(value = "/getIdCard", method = RequestMethod.GET) | |
362 | + @ResponseBody | |
363 | + public Map<String, String> getIdCardInfo() { | |
364 | + Map<String, String> m = new HashMap<>(); | |
365 | + m.put("code", "1"); | |
366 | + m.put("name", "肖洁吉"); | |
367 | + m.put("sex", "女"); | |
368 | + m.put("nation", "蒙古族"); | |
369 | + m.put("id", "53262619880226252X"); | |
370 | + m.put("birth", "1990-12-18"); | |
371 | + m.put("address", "山西省运城市临猗县嵋阳镇下朝村第二居民组"); | |
372 | + m.put("office", "成都市公安局双流分局"); | |
373 | + m.put("vailddate", "2017.08.14-2037.08.14"); | |
374 | + return m; | |
375 | + } | |
376 | + | |
377 | + | |
361 | 378 | /** |
362 | 379 | * 获取医院 |
363 | 380 | */ |