wang-hao-jie
2021-12-09 fdeaff15619f5f2e851f74f7b5e2b203b157856d
xboot-modules/xboot-your/src/main/java/cn/exrick/xboot/your/controller/EquipmentController.java
@@ -51,7 +51,9 @@
    @ApiOperation(value = "分页获取")
    public Result<IPage<Equipment>> getByPage(String carId,PageVo page) {
        QueryWrapper<Equipment> wrapper = new QueryWrapper<>();
        wrapper.like("car_id",carId);
        if(!StrUtil.isEmpty(carId)){
            wrapper.eq("car_id",carId);
        }
        IPage<Equipment> data = iEquipmentService.page(PageUtil.initMpPage(page),wrapper);
        return new ResultUtil<IPage<Equipment>>().setData(data);
    }