| | |
| | | } |
| | | |
| | | |
| | | @ApiOperation(value = "访客微信授权 - 阜宁运维", notes = "访客微信授权获取openId") |
| | | @GetMapping("/ywWxAuthorize") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "query", dataType = "String", name = "code", value = "授权码", required = true), |
| | | @ApiImplicitParam(paramType = "query", dataType = "Integer", name = "source", value = "来源:0=司机;1=访客;2=内部员工", required = true) |
| | | }) |
| | | public ApiResponse<WxAuthorizeVO> ywWxAuthorize(@RequestParam String code) { |
| | | WxAuthorizeVO wxAuthorizeVO = memberService.ywWxAuthorize(code); |
| | | return ApiResponse.success("查询成功",wxAuthorizeVO); |
| | | } |
| | | |
| | | |
| | | |
| | | @ApiOperation(value = "查询被访问人信息", notes = "查询被访问人信息") |
| | | @PostMapping("/getVisitedMember") |
| | | public ApiResponse<List<MemberVO>> getVisitedMember(@Valid @RequestBody CheckVisitedDTO checkVisitedDTO) { |