com.macro.mall.dto.PmsProductQueryParam Java Examples

The following examples show how to use com.macro.mall.dto.PmsProductQueryParam. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: PmsProductServiceImpl.java    From mall-swarm with Apache License 2.0 6 votes vote down vote up
@Override
public List<PmsProduct> list(PmsProductQueryParam productQueryParam, Integer pageSize, Integer pageNum) {
    PageHelper.startPage(pageNum, pageSize);
    PmsProductExample productExample = new PmsProductExample();
    PmsProductExample.Criteria criteria = productExample.createCriteria();
    criteria.andDeleteStatusEqualTo(0);
    if (productQueryParam.getPublishStatus() != null) {
        criteria.andPublishStatusEqualTo(productQueryParam.getPublishStatus());
    }
    if (productQueryParam.getVerifyStatus() != null) {
        criteria.andVerifyStatusEqualTo(productQueryParam.getVerifyStatus());
    }
    if (!StringUtils.isEmpty(productQueryParam.getKeyword())) {
        criteria.andNameLike("%" + productQueryParam.getKeyword() + "%");
    }
    if (!StringUtils.isEmpty(productQueryParam.getProductSn())) {
        criteria.andProductSnEqualTo(productQueryParam.getProductSn());
    }
    if (productQueryParam.getBrandId() != null) {
        criteria.andBrandIdEqualTo(productQueryParam.getBrandId());
    }
    if (productQueryParam.getProductCategoryId() != null) {
        criteria.andProductCategoryIdEqualTo(productQueryParam.getProductCategoryId());
    }
    return productMapper.selectByExample(productExample);
}
 
Example #2
Source File: PmsProductServiceImpl.java    From macrozheng with Apache License 2.0 6 votes vote down vote up
@Override
public List<PmsProduct> list(PmsProductQueryParam productQueryParam, Integer pageSize, Integer pageNum) {
    PageHelper.startPage(pageNum, pageSize);
    PmsProductExample productExample = new PmsProductExample();
    PmsProductExample.Criteria criteria = productExample.createCriteria();
    criteria.andDeleteStatusEqualTo(0);
    if (productQueryParam.getPublishStatus() != null) {
        criteria.andPublishStatusEqualTo(productQueryParam.getPublishStatus());
    }
    if (productQueryParam.getVerifyStatus() != null) {
        criteria.andVerifyStatusEqualTo(productQueryParam.getVerifyStatus());
    }
    if (!StringUtils.isEmpty(productQueryParam.getKeyword())) {
        criteria.andNameLike("%" + productQueryParam.getKeyword() + "%");
    }
    if (!StringUtils.isEmpty(productQueryParam.getProductSn())) {
        criteria.andProductSnEqualTo(productQueryParam.getProductSn());
    }
    if (productQueryParam.getBrandId() != null) {
        criteria.andBrandIdEqualTo(productQueryParam.getBrandId());
    }
    if (productQueryParam.getProductCategoryId() != null) {
        criteria.andProductCategoryIdEqualTo(productQueryParam.getProductCategoryId());
    }
    return productMapper.selectByExample(productExample);
}
 
Example #3
Source File: PmsProductServiceImpl.java    From mall with Apache License 2.0 6 votes vote down vote up
@Override
public List<PmsProduct> list(PmsProductQueryParam productQueryParam, Integer pageSize, Integer pageNum) {
    PageHelper.startPage(pageNum, pageSize);
    PmsProductExample productExample = new PmsProductExample();
    PmsProductExample.Criteria criteria = productExample.createCriteria();
    criteria.andDeleteStatusEqualTo(0);
    if (productQueryParam.getPublishStatus() != null) {
        criteria.andPublishStatusEqualTo(productQueryParam.getPublishStatus());
    }
    if (productQueryParam.getVerifyStatus() != null) {
        criteria.andVerifyStatusEqualTo(productQueryParam.getVerifyStatus());
    }
    if (!StringUtils.isEmpty(productQueryParam.getKeyword())) {
        criteria.andNameLike("%" + productQueryParam.getKeyword() + "%");
    }
    if (!StringUtils.isEmpty(productQueryParam.getProductSn())) {
        criteria.andProductSnEqualTo(productQueryParam.getProductSn());
    }
    if (productQueryParam.getBrandId() != null) {
        criteria.andBrandIdEqualTo(productQueryParam.getBrandId());
    }
    if (productQueryParam.getProductCategoryId() != null) {
        criteria.andProductCategoryIdEqualTo(productQueryParam.getProductCategoryId());
    }
    return productMapper.selectByExample(productExample);
}
 
Example #4
Source File: PmsProductServiceImpl.java    From macrozheng-mall with MIT License 6 votes vote down vote up
@Override
public List<PmsProduct> list(PmsProductQueryParam productQueryParam, Integer pageSize, Integer pageNum) {
    PageHelper.startPage(pageNum, pageSize);
    PmsProductExample productExample = new PmsProductExample();
    PmsProductExample.Criteria criteria = productExample.createCriteria();
    criteria.andDeleteStatusEqualTo(0);
    if (productQueryParam.getPublishStatus() != null) {
        criteria.andPublishStatusEqualTo(productQueryParam.getPublishStatus());
    }
    if (productQueryParam.getVerifyStatus() != null) {
        criteria.andVerifyStatusEqualTo(productQueryParam.getVerifyStatus());
    }
    if (!StringUtils.isEmpty(productQueryParam.getKeyword())) {
        criteria.andNameLike("%" + productQueryParam.getKeyword() + "%");
    }
    if (!StringUtils.isEmpty(productQueryParam.getProductSn())) {
        criteria.andProductSnEqualTo(productQueryParam.getProductSn());
    }
    if (productQueryParam.getBrandId() != null) {
        criteria.andBrandIdEqualTo(productQueryParam.getBrandId());
    }
    if (productQueryParam.getProductCategoryId() != null) {
        criteria.andProductCategoryIdEqualTo(productQueryParam.getProductCategoryId());
    }
    return productMapper.selectByExample(productExample);
}
 
Example #5
Source File: PmsProductController.java    From mall-swarm with Apache License 2.0 5 votes vote down vote up
@ApiOperation("查询商品")
@RequestMapping(value = "/list", method = RequestMethod.GET)
@ResponseBody
public CommonResult<CommonPage<PmsProduct>> getList(PmsProductQueryParam productQueryParam,
                                                    @RequestParam(value = "pageSize", defaultValue = "5") Integer pageSize,
                                                    @RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum) {
    List<PmsProduct> productList = productService.list(productQueryParam, pageSize, pageNum);
    return CommonResult.success(CommonPage.restPage(productList));
}
 
Example #6
Source File: PmsProductController.java    From macrozheng with Apache License 2.0 5 votes vote down vote up
@ApiOperation("查询商品")
@RequestMapping(value = "/list", method = RequestMethod.GET)
@ResponseBody
@PreAuthorize("hasAuthority('pms:product:read')")
public CommonResult<CommonPage<PmsProduct>> getList(PmsProductQueryParam productQueryParam,
                                                    @RequestParam(value = "pageSize", defaultValue = "5") Integer pageSize,
                                                    @RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum) {
    List<PmsProduct> productList = productService.list(productQueryParam, pageSize, pageNum);
    return CommonResult.success(CommonPage.restPage(productList));
}
 
Example #7
Source File: PmsProductController.java    From mall with Apache License 2.0 5 votes vote down vote up
@ApiOperation("查询商品")
@RequestMapping(value = "/list", method = RequestMethod.GET)
@ResponseBody
public CommonResult<CommonPage<PmsProduct>> getList(PmsProductQueryParam productQueryParam,
                                                    @RequestParam(value = "pageSize", defaultValue = "5") Integer pageSize,
                                                    @RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum) {
    List<PmsProduct> productList = productService.list(productQueryParam, pageSize, pageNum);
    return CommonResult.success(CommonPage.restPage(productList));
}
 
Example #8
Source File: PmsProductController.java    From macrozheng-mall with MIT License 5 votes vote down vote up
@ApiOperation("查询商品")
@RequestMapping(value = "/list", method = RequestMethod.GET)
@ResponseBody
@PreAuthorize("hasAuthority('pms:product:read')")
public Object getList(PmsProductQueryParam productQueryParam,
                   @RequestParam(value = "pageSize", defaultValue = "5") Integer pageSize,
                   @RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum) {
    List<PmsProduct> productList = productService.list(productQueryParam, pageSize, pageNum);
    return new CommonResult().pageSuccess(productList);
}
 
Example #9
Source File: PmsProductService.java    From mall-swarm with Apache License 2.0 2 votes vote down vote up
/**
 * 分页查询商品
 */
List<PmsProduct> list(PmsProductQueryParam productQueryParam, Integer pageSize, Integer pageNum);
 
Example #10
Source File: PmsProductService.java    From macrozheng with Apache License 2.0 2 votes vote down vote up
/**
 * 分页查询商品
 */
List<PmsProduct> list(PmsProductQueryParam productQueryParam, Integer pageSize, Integer pageNum);
 
Example #11
Source File: PmsProductService.java    From mall with Apache License 2.0 2 votes vote down vote up
/**
 * 分页查询商品
 */
List<PmsProduct> list(PmsProductQueryParam productQueryParam, Integer pageSize, Integer pageNum);
 
Example #12
Source File: PmsProductService.java    From macrozheng-mall with MIT License 2 votes vote down vote up
/**
 * 分页查询商品
 */
List<PmsProduct> list(PmsProductQueryParam productQueryParam, Integer pageSize, Integer pageNum);