|
@@ -125,6 +125,15 @@ public class K3SupplierController {
|
|
|
return ResponseHelper.success();
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "修改供应商")
|
|
|
+ @PostMapping("/del")
|
|
|
+ public ResponseHelper del(
|
|
|
+ @ApiParam(required = true, value = "id") @RequestParam(required = true) String id
|
|
|
+ ) throws Exception {
|
|
|
+ k3SupplierLogic.del(id);
|
|
|
+ return ResponseHelper.success();
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
@GetMapping("/downloadCustomer")
|
|
|
@ApiOperation("下载供应商导入模板")
|