智慧保安后台管理-外网-验收版本
zengh
2021-12-04 f2997ef2b7d94fab9c9decfb2e892a9ae2ce0f2e
src/main/java/org/springblade/modules/resource/controller/AttachController.java
@@ -84,8 +84,8 @@
   @GetMapping("/page")
   @ApiOperationSupport(order = 3)
   @ApiOperation(value = "分页", notes = "传入attach")
   public R<IPage<AttachVO>> page(AttachVO attach, Query query) {
      IPage<AttachVO> pages = attachService.selectAttachPage(Condition.getPage(query), attach);
   public R<IPage<AttachVO>> page(AttachVO attach, Query query,String deptid, String type,String cardid) {
      IPage<AttachVO> pages = attachService.selectAttachPage(Condition.getPage(query), attach,type,cardid);
      return R.data(pages);
   }