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