peng
2 天以前 184ba31ccdd9f18c6ea7ab12b341ffd2a03b2cef
seller-api/src/main/java/cn/lili/controller/goods/GoodsStoreController.java
@@ -163,7 +163,6 @@
    @ApiOperation(value = "修改商品")
    @PutMapping(value = "/update/{goodsId}", consumes = "application/json", produces = "application/json")
    public ResultMessage<GoodsOperationDTO> update(@Valid @RequestBody GoodsOperationDTO goodsOperationDTO, @PathVariable String goodsId) {
        System.err.println(JSONObject.toJSONString(goodsOperationDTO));
        goodsService.editGoods(goodsOperationDTO, goodsId);
        return ResultUtil.success();
    }