Browse Source

fix:[资源库管理]bug

master
15881625488@163.com 3 weeks ago
parent
commit
28d07a3287
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/PublicController.java

+ 3
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/PublicController.java View File

@ -182,6 +182,9 @@ public class PublicController extends BaseController {
if (StringUtils.isNoneBlank(study.getLeaderName())) {
queryWrapper.like("leader_name", study.getLeaderName());
}
if (study.getLeader()!=null&&study.getLeader().longValue()>0) {
queryWrapper.eq("leader", study.getLeader());
}
List<Study> list = studyService.list(queryWrapper);
return getDataTable(list);
}

Loading…
Cancel
Save