whyclxw
2025-06-16 409c2d80badf33912ec785f5cf1413df917a85cb
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("查询技术规格书")