Commit 57a39374 authored by chenhao's avatar chenhao

根据amosid 获取当前人的身份证号码

parent cdcc4a62
...@@ -766,6 +766,13 @@ public class OrgUsrController extends BaseController { ...@@ -766,6 +766,13 @@ public class OrgUsrController extends BaseController {
} }
@TycloudOperation(ApiLevel = UserType.AGENCY)
@ApiOperation(httpMethod = "GET", value = "查询当前人员的身份证号码", notes = "查询当前人员的身份证号码")
@GetMapping(value = "find/getIdNumberByAmosId")
public ResponseModel<String> getIdNumberByAmosId(@RequestParam String amosId) {
return ResponseHelper.buildResponse(iOrgUsrService.getIdNumberByAmosId(amosId));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment