Browse Source

修改视频创建逻辑、新增图片检查接口、新增百度API接口、修改上传阿里云检查、新增回调接口

private_deployment
lrh 1 year ago
parent
commit
b59b293979
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      suimangCApi/src/main/java/com/iformall/controller/PersonPhotoController.java

+ 1
- 2
suimangCApi/src/main/java/com/iformall/controller/PersonPhotoController.java View File

@@ -92,8 +92,7 @@ public class PersonPhotoController extends BaseController {
if (ObjectUtils.isEmpty(file) || file.getSize() <= 0) { if (ObjectUtils.isEmpty(file) || file.getSize() <= 0) {
return new ResultData(ErrorCode.SYS_PARAMETER_NOT_NULL.getCode(), "素材为空"); return new ResultData(ErrorCode.SYS_PARAMETER_NOT_NULL.getCode(), "素材为空");
} }
personPhotoService.checkPhoto(file);
return new ResultData();
return personPhotoService.checkPhoto(file);
} }


@ApiOperation("百度图片审核接口") @ApiOperation("百度图片审核接口")


Loading…
Cancel
Save