| | |
| | | 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") |
| | |
| | | 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); |
| | | } |
| | | |
| | | |
| | | } |