增加日志
This commit is contained in:
parent
498de25b9b
commit
b7453e1123
|
|
@ -113,7 +113,8 @@ public class StockController {
|
|||
return new ResponseEntity<>(dataMap, HttpStatus.OK);
|
||||
}
|
||||
|
||||
@AnonymousAccess
|
||||
|
||||
@Log("商品库存:上下架商品")
|
||||
@PutMapping("/grounding")
|
||||
@ApiOperation("上下架商品")
|
||||
public ResponseEntity<Object> grounding(
|
||||
|
|
@ -140,6 +141,7 @@ public class StockController {
|
|||
return new ResponseEntity<>(HttpStatus.OK);
|
||||
}
|
||||
|
||||
@Log("商品库存:修改商品状态")
|
||||
@PutMapping("productStatus")
|
||||
public ResponseEntity<Object> updateProductStatus(@RequestBody StockUpdateValueVO updateValueVO) {
|
||||
stockService.updateProductStatus(updateValueVO);
|
||||
|
|
|
|||
Loading…
Reference in New Issue