| | |
| | | @LoginRequired |
| | | @ApiOperation("更新用户邮箱信息") |
| | | @PostMapping("/upateInfo") |
| | | @EncryptionReq |
| | | @EncryptionResp |
| | | public ApiResponse upateInfo (@RequestBody UpdEmailDTO updEmailDTO ,@RequestHeader(JwtTokenUtil.HEADER_KEY) String token) { |
| | | try { |
| | | Member user = jwtTokenUtil.getUserInfoByToken(token); |
| | |
| | | @ApiOperation("获取企业微信JS签名") |
| | | @PostMapping("/getQwSignature") |
| | | @ResponseBody |
| | | @EncryptionReq |
| | | @EncryptionResp |
| | | public ApiResponse<WebQwSingatureVO> getQwSignature(@RequestBody WebQwSingatureDto param) { |
| | | try { |
| | | String jsapiTicket = systemDictDataBiz.queryByCode(Constants.QYWX,Constants.QYWX_JS_API_TICKET).getCode(); |
| | |
| | | @LoginRequired |
| | | @ApiOperation("查询可被抄送人分页") |
| | | @PostMapping("/getCopySendUserPage") |
| | | @EncryptionReq |
| | | @EncryptionResp |
| | | public ApiResponse<PageData<Member>> getCopySendUserPage (@RequestBody PageWrap<Member> pageWrap) { |
| | | pageWrap.getModel().setIsSendCopy(Constants.ONE); |
| | | return ApiResponse.success(memberService.findPage(pageWrap)); |