|
@@ -54,4 +54,14 @@ public class K3CategoryController {
|
|
|
return ResponseHelper.success();
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ @ApiOperation(value = "删除存货类别")
|
|
|
+ @PostMapping("/del")
|
|
|
+ public ResponseHelper del(
|
|
|
+ @ApiParam(value = "品类id",required = true)@RequestParam String categoryId
|
|
|
+ ) throws Exception {
|
|
|
+ k3CategoryLogic.del(categoryId);
|
|
|
+ return ResponseHelper.success();
|
|
|
+ }
|
|
|
+
|
|
|
}
|