whycrzg
2021-05-24 d37b9406aa079d1497bcbfe519cec7d34574f892
src/main/java/com/whyc/controller/WindingExperimentController.java
@@ -94,9 +94,9 @@
    @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")