whyclxw
2025-06-14 0317bf3659fe89118d81f0ccf8418f7f3939f3c9
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("查询技术规格书")