|
@@ -98,6 +98,15 @@ public class UserProfileStampController extends BaseController {
|
|
String s =iUserProfileService.addWord(bo);
|
|
String s =iUserProfileService.addWord(bo);
|
|
return AjaxResult.success(s);
|
|
return AjaxResult.success(s);
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ @ApiOperation("导出盖章wordV2")
|
|
|
|
+ @PostMapping("/V2/addWord")
|
|
|
|
+ public AjaxResult<Void> addWordV2(@RequestBody UserProfileAddBo bo) throws IOException {
|
|
|
|
+ ClientLoginUser loginUser = wxTokenService.getLoginUser(ServletUtils.getRequest());
|
|
|
|
+ bo.setUserId(loginUser.getUser().getUserId());
|
|
|
|
+ String s =iUserProfileService.addWordV2(bo);
|
|
|
|
+ return AjaxResult.success(s);
|
|
|
|
+ }
|
|
/**
|
|
/**
|
|
* 查询填写资料审核列表
|
|
* 查询填写资料审核列表
|
|
*/
|
|
*/
|