|
@@ -192,24 +192,7 @@ public class UserController extends BaseController {
|
|
|
return userService.rejectPersonalAuth(userId, command.getExplain());
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * 获取个人认证信息
|
|
|
- */
|
|
|
- @LoginRequired
|
|
|
- @RequestMapping(value = "personAuth/{userId}", method = RequestMethod.GET)
|
|
|
- public PersonalAuthVO getByUserId(@PathVariable("userId") Long userId) {
|
|
|
- return personalAuthService.getByUserId(userId);
|
|
|
- }
|
|
|
|
|
|
- /**
|
|
|
- * 获取用户企业认证信息
|
|
|
- */
|
|
|
-
|
|
|
- @LoginRequired
|
|
|
- @RequestMapping(value = "enterpriseAuth/{userId}", method = RequestMethod.GET)
|
|
|
- public EnterpriseAuthVO getEnterpriseAuthByUserId(@PathVariable("userId") Long userId) {
|
|
|
- return enterpriseAuthService.getByUserId(userId);
|
|
|
- }
|
|
|
|
|
|
|
|
|
/**
|