|
@@ -113,6 +113,16 @@ public class K3MaterialController {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ @ApiOperation(value = "删除物料")
|
|
|
+ @PostMapping("/del")
|
|
|
+ public ResponseHelper add(
|
|
|
+ @ApiParam(required = true) @RequestParam String id
|
|
|
+ ) throws Exception {
|
|
|
+ k3MaterialLogic.del(id);
|
|
|
+ return ResponseHelper.success();
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
|
|
|
@PostMapping("/downloadCustomer")
|
|
|
@ApiOperation("下载物料导入模板")
|