|
|
|
@ -81,9 +81,6 @@ public class BasicNoticeController extends BladeController {
|
|
|
|
|
public R<IPage<BasicNoticeVO>> list(@ApiIgnore @RequestParam Map<String, Object> notice, Query query) { |
|
|
|
|
BasicNoticeWrapper.build().noticeQuery(notice); |
|
|
|
|
|
|
|
|
|
if(AuthUtil.isAdmin()){ |
|
|
|
|
return R.data(null); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
IPage<BasicNotice> pages = noticeService.page(Condition.getPage(query), Condition.getQueryWrapper(notice, BasicNotice.class)); |
|
|
|
|
return R.data(BasicNoticeWrapper.build().pageVO(pages)); |
|
|
|
|