Commit 05894fe7 by XiaHou

权星相关接口修复

parent 85fb6d39
......@@ -70,7 +70,7 @@ public class PmsProductController {
@ApiParam("模糊查询商品名称 ")@RequestParam("name") String name,
@ApiParam("模糊查询商品供应商名称 ")@RequestParam("mchtName") String mchtName,
@ApiParam("审核状态 0待审核 1审核通过 2审核未通过 ")@RequestParam("verifyStatus") Integer verifyStatus,
@ApiParam("商品供应商id ")@RequestParam("mchtId") Long mchtId){
@ApiParam("商品供应商id ")@RequestParam(name="mchtId",required = false) Long mchtId){
return CommonResult.success(CommonPage.restPage(this.productService.getPageList(page,size,name,verifyStatus,mchtName,mchtId)));
}
......
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