whyclxw
2025-06-13 4d325fbd79635731ebad006b1a79beb0cde4fdb9
src/main/java/com/whyc/controller/WorksheetLinkController.java
@@ -6,10 +6,9 @@
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
import java.io.IOException;
@RestController
@RequestMapping("worksheetLink")
@@ -40,6 +39,11 @@
        return new Response().setII(1,"审批完成");
    }
    @PutMapping("confirmProductProcedureAndSOP")
    @ApiOperation(tags = "流程卡和SOP",value = "确认过程-流程卡及SOP确认",notes = "id; linkStatus:确认1,拒绝2; dealReason:拒绝时填写处理意见")
    public Response confirmProductProcedureAndSOP(@RequestBody WorksheetLink link) throws IOException {
        return service.confirmProductProcedureAndSOP(link);
    }
}