This commit is contained in:
cjw 2024-06-18 15:33:52 +08:00
parent 50b5651e74
commit cbe266392c
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ public class SysOssResourceServiceImpl implements ISysOssResourceService {
@Override
public TableDataInfo<SysOssResourceVo> queryAwaitPageList(SysOssResourceBo bo, PageQuery pageQuery) {
QueryWrapper<SysOssTextbook> wrapper = Wrappers.query();
wrapper.le("ot.status", 0);
wrapper.le("r.status", 0);
Page<SysOssResourceVo> result = baseMapper.selectPageAwaitList(pageQuery.build(), wrapper);
return TableDataInfo.build(result);
}