MyBatis-Plus多表分页

     condition.setTenantId(tenantIdContext.getCurrTenantId());
        IPage page = condition.getPage();
        List eventResultList = getBaseMapper().page(page,condition);
  page.setRecords(eventResultList);
    List page(IPage page, @Param("condition")EventParam condition);

你可能感兴趣的:(笔记,mybatis,spring,boot,后端)