Commit 9eb1f8dc by XiaHou

权星相关接口修复

parent 3f91d929
...@@ -32,9 +32,9 @@ public class PmsProductController { ...@@ -32,9 +32,9 @@ public class PmsProductController {
@ApiParam("供应商id")@RequestParam("mchtId") Long mchtId, @ApiParam("供应商id")@RequestParam("mchtId") Long mchtId,
@ApiParam("审核状态:0->未审核;1->审核通过 2->驳回")@RequestParam("verifyStatus") Integer verifyStatus, @ApiParam("审核状态:0->未审核;1->审核通过 2->驳回")@RequestParam("verifyStatus") Integer verifyStatus,
@ApiParam("上架状态:0->下架;1->上架")@RequestParam("publishStatus") Integer publishStatus, @ApiParam("上架状态:0->下架;1->上架")@RequestParam("publishStatus") Integer publishStatus,
@ApiParam("一级分类id")@RequestParam("productCategoryIdI")Long productCategoryIdI, @ApiParam("一级分类id")@RequestParam(name="productCategoryIdI",required = false)Long productCategoryIdI,
@ApiParam("一级分类id")@RequestParam("productCategoryId")Long productCategoryId, @ApiParam("二级分类id")@RequestParam(name="productCategoryId",required = false)Long productCategoryId,
@ApiParam("一级分类id")@RequestParam("productCategoryIdIII")Long productCategoryIdIII, @ApiParam("三级分类id")@RequestParam(name="productCategoryIdIII",required = false)Long productCategoryIdIII,
@ApiParam("排序:(例如根据价格降序 传入price DESC 根据价格升序传入price ASC) ")@RequestParam("orderBy") String orderBy){ @ApiParam("排序:(例如根据价格降序 传入price DESC 根据价格升序传入price ASC) ")@RequestParam("orderBy") String orderBy){
return CommonResult.success(CommonPage.restPage(this.pmsProductService.getAppPageList(page,size,name,newStatus,mchtId,verifyStatus,publishStatus, return CommonResult.success(CommonPage.restPage(this.pmsProductService.getAppPageList(page,size,name,newStatus,mchtId,verifyStatus,publishStatus,
productCategoryIdI,productCategoryId,productCategoryIdIII,orderBy))); productCategoryIdI,productCategoryId,productCategoryIdIII,orderBy)));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment