| | |
| | | |
| | | @ApiOperation(value = "批量删除") |
| | | @ApiImplicitParams(value = { |
| | | @ApiImplicitParam(name = "ids", value = "销售单id", dataTypeClass = String.class, dataType = "List", required = true) |
| | | @ApiImplicitParam(name = "ids", value = "销售单id", dataTypeClass = Integer.class, dataType = "List", required = true) |
| | | }) |
| | | @PostMapping("/delAllTech") |
| | | public Result delAllTech( List<Integer> ids) { |
| | | public Result delAllTech(@RequestParam("ids") List<Integer> ids) { |
| | | technologyTemplateService.delAllTech(ids); |
| | | return Result.success("批量删除成功!"); |
| | | } |