| | |
| | | |
| | | @DeleteMapping("delRZExperiment") |
| | | @ApiOperation(value = "删除绕组实验数据",notes = "根据唯一试验编号删除试验数据") |
| | | public Response delExperimentWindingbyId(@ApiParam(value = "试验编号",required = true) @RequestParam String experimentId){ |
| | | public Response delExperimentWindingbyId(@ApiParam(value = "试验编号",required = true) @RequestParam String experimentId,@ApiParam(value = "唯一标识",required = true) @RequestParam String uuid){ |
| | | |
| | | return service.delExperimentWindingbyId(experimentId); |
| | | return service.delExperimentWindingbyId(experimentId,uuid); |
| | | } |
| | | |
| | | @PostMapping("updateRZStep") |