Commit 4e3f325c authored by liqin's avatar liqin 💬

bug fixed

parent 285ce192
......@@ -36,7 +36,7 @@ import java.util.stream.Collectors;
@Slf4j
@RestController
@RequestMapping("/videoContent")
@Api(tags = {"视频内容内容接口"})
@Api(tags = {"视频内容接口"})
public class VideoContentController extends BaseController {
@Resource
......@@ -190,7 +190,6 @@ public class VideoContentController extends BaseController {
@RequestParam(value = "videoContentCopyrightOwnerId", required = false) String videoContentCopyrightOwnerId) {
final LambdaQueryWrapper<VideoContent> lambdaQueryWrapper = new LambdaQueryWrapper<>();
lambdaQueryWrapper.eq(VideoContent::getPublished, true);
lambdaQueryWrapper.eq(VideoContent::getDeleted, false);
if (auditStatus != null) {
lambdaQueryWrapper.eq(VideoContent::getAuditStatus, auditStatus.name());
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment