|
@@ -178,6 +178,12 @@ public class ChannelServiceImpl extends ServiceImpl<ChannelMapper, Channel> impl
|
|
|
QueryWrapper<Channel> queryWrapper = new QueryWrapper<>();
|
|
|
queryWrapper.eq("t1.parent_id", channel.getParentId());
|
|
|
queryWrapper.eq("t1.level", 0);
|
|
|
+ if(null != channel.getVerifyStatus()) {
|
|
|
+ queryWrapper.eq("t1.verify_status", channel.getVerifyStatus());
|
|
|
+ }
|
|
|
+ if(null != channel.getCertifyStatus()) {
|
|
|
+ queryWrapper.eq("t1.certify_status", channel.getCertifyStatus());
|
|
|
+ }
|
|
|
return getBaseMapper().selectSiteVoList(queryWrapper);
|
|
|
}
|
|
|
|