springboot 查询

ServiceImpl中

getBaseMapper()的使用

public IPage<ProductPageVO> getProductPage(Integer regionOrCityCode, Integer brandId, LocalDate usedDate, Page<ProductPageVO> page) {
        return getBaseMapper().getProductPage(regionOrCityCode, brandId, usedDate, page);
    }

optional的使用

        //查询产品
        Optional<ProductManage> optionalProductManage = productManageService.lambdaQuery()
                .eq(BaseEntity::getId, productId).oneOpt();
        if (optionalProductManage.isEmpty()) {
            return null;
        }
        ProductManage productManage = optionalProductManage.get();

你可能感兴趣的:(springboot,spring,boot,java,spring)