Update PmsSkuStockController.java

This commit is contained in:
macro
2021-11-28 16:15:23 +08:00
parent 3aafbaef18
commit 175fdb9de7

View File

@@ -22,7 +22,7 @@ public class PmsSkuStockController {
@Autowired
private PmsSkuStockService skuStockService;
@ApiOperation("根据商品编号及sku编码模糊搜索sku库存")
@ApiOperation("根据商品ID及sku编码模糊搜索sku库存")
@RequestMapping(value = "/{pid}", method = RequestMethod.GET)
@ResponseBody
public CommonResult<List<PmsSkuStock>> getList(@PathVariable Long pid, @RequestParam(value = "keyword",required = false) String keyword) {