src/main/java/com/whyc/controller/TechnicalSpecificationController.java
@@ -49,8 +49,8 @@ @ApiOperation("更新锁定状态") @PostMapping("updateLock") public Response updateLock(@RequestParam int id,@RequestParam int lockFlag) throws IOException { return service.updateLock(id,lockFlag); public Response updateLock(@RequestParam int id,@RequestParam int lockFlag,@RequestParam(required = false) String reason) throws IOException { return service.updateLock(id,lockFlag,reason); } @ApiOperation("查询技术规格书")