|
@@ -227,26 +227,6 @@ public class EsignController extends ApiBaseController {
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "E签宝企业认证", notes = "参数:{'userId':'XXXXXXX','redirectUrl':'xxxxx'}" +
|
|
|
- "\n(userId:待认证e签宝用户id" +
|
|
|
- "\n redirectUrl:企业认证成功跳转URl)")
|
|
|
- @ApiImplicitParams({
|
|
|
- @ApiImplicitParam(name = "params", paramType = "body")
|
|
|
- })
|
|
|
- @PostMapping("organRealVerify1")
|
|
|
- public Object organRealVerify1() {
|
|
|
- ParameterObject obj = getParameterObject();
|
|
|
- obj.checkParameterNotNull("userId,redirectUrl");
|
|
|
- String userId = obj.getString("userId");
|
|
|
- String redirectUrl = obj.getString("redirectUrl");
|
|
|
- SysUser sysUser = userService.selectUserById(Long.parseLong(userId));
|
|
|
- String result="";
|
|
|
- if (sysUser!=null){
|
|
|
- result = organRealVerifyService.organRealVerify(sysUser.getAccountId(), "customersExt.getOrgId()",redirectUrl);
|
|
|
- }
|
|
|
- return result;
|
|
|
- }
|
|
|
-
|
|
|
/*调用修改数据库企业认证状态*/
|
|
|
@ApiOperation(value = "E签宝企业认证成功回调接口(修改认证状态)",
|
|
|
notes = "参数:{" +
|