我们专注攀枝花网站设计 攀枝花网站制作 攀枝花网站建设
成都网站建设公司服务热线:400-028-6601

网站建设知识

十年网站开发经验 + 多家企业客户 + 靠谱的建站团队

量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决

springboot+mybatisplus实现多表联查分页

1 配置分页插件

创新互联公司主营松溪网站建设的网络公司,主营网站建设方案,重庆App定制开发,松溪h5微信平台小程序开发搭建,松溪网站营销推广欢迎松溪等地区企业咨询

public class MybatisPlusConfig {
    @Bean
    public PaginationInterceptor paginationInterceptor() {
        return new PaginationInterceptor();
    }
    @Bean
    public PerformanceInterceptor performanceInterceptor() {
        PerformanceInterceptor performanceInterceptor = new PerformanceInterceptor();
        Properties properties = new Properties();
        properties.setProperty("format", "true");
        performanceInterceptor.setProperties(properties);
        return performanceInterceptor;
    }
}

2 创建返回实体VO

@ApiModel(value = "员工得分信息")
public class AgentOutVo {
    @ApiModelProperty(value = "所在单位")
    private String unit;
    略……
    @ApiModelProperty(value = "申诉状态")
    private String appealState;
}

3 service层
接口

public interface IAgentScoreService {
    List queryAgentOutMapByPage(Map params);
}

实现

public class AgentScoreServiceImpl extends ServiceImpl implements IAgentScoreService {
    @Autowired
    private AgentScoreMapper agentScoreMapper;
    @Override
    public List queryAgentOutMapByPage(Map params) {
        return agentScoreMapper.selectAgentOutMap(new Query(params).getPage(),params); 
    }
}

4 mapper

public interface AgentScoreMapper extends BaseMapper {
    List selectAgentOutMap(Page pagination, @Param("params") Map params);//params 接收前端对象
}

5 resources/mapper/


标题名称:springboot+mybatisplus实现多表联查分页
分享地址:http://mswzjz.cn/article/jppehj.html

其他资讯