|
@@ -68,7 +68,7 @@ public class FaceOuterServiceProvider extends ControllerSupport implements FaceO
|
|
|
@RequestParam @ApiParam(value = "照片地址", required = true) String photoUrl,
|
|
|
@RequestParam @ApiParam(value = "操作者", required = true) String operator) {
|
|
|
|
|
|
- if (!getSecurityRootOrgId().equals(rootOrgId)) {
|
|
|
+ if (!getEnterpriseRootOrgId().equals(rootOrgId)) {
|
|
|
throw new StatusException("1000001", "rootOrgId is wrong");
|
|
|
}
|
|
|
|
|
@@ -106,7 +106,7 @@ public class FaceOuterServiceProvider extends ControllerSupport implements FaceO
|
|
|
@RequestParam @ApiParam(value = "操作者", required = true) String operator,
|
|
|
@RequestParam @ApiParam(value = "学生照片文件(文件名称=身份证号码+文件后缀) 如:xxxxxxxxxx.jpg", required = true) CommonsMultipartFile file) {
|
|
|
|
|
|
- if (!getSecurityRootOrgId().equals(rootOrgId)) {
|
|
|
+ if (!getEnterpriseRootOrgId().equals(rootOrgId)) {
|
|
|
throw new StatusException("1000001", "rootOrgId is wrong");
|
|
|
}
|
|
|
|
|
@@ -134,7 +134,7 @@ public class FaceOuterServiceProvider extends ControllerSupport implements FaceO
|
|
|
@RequestParam @ApiParam(value = "操作者", required = true) String operator,
|
|
|
@RequestParam @ApiParam(value = "学生照片文件(身份证号码+文件后缀)压缩包(ZIP文件,压缩包内不含目录)", required = true) CommonsMultipartFile file) {
|
|
|
|
|
|
- if (!getSecurityRootOrgId().equals(rootOrgId)) {
|
|
|
+ if (!getEnterpriseRootOrgId().equals(rootOrgId)) {
|
|
|
throw new StatusException("1000001", "rootOrgId is wrong");
|
|
|
}
|
|
|
|