| | |
| | | return new Response<List<WorkflowLink>>().set(1, service.getWorkflowInfo(mainId)); |
| | | } |
| | | |
| | | @PutMapping("linkOfDischargePlanTemp") |
| | | @PostMapping("linkOfDischargePlanTemp") |
| | | @ApiOperation(value = "更新节点-放电计划", notes = "传参link对象内,传入id,mainId,processLevel,status,dealReason或者dealRejectReason;" + |
| | | "字段status:5-通过,8-驳回") |
| | | public Response updateLinkOfDischargePlanTemp(@RequestBody WorkflowLinkDTO linkDTO) { |
| | | return service.updateLinkOfDischargePlanTemp(linkDTO); |
| | | } |
| | | |
| | | @PutMapping("link") |
| | | @PostMapping("link") |
| | | @ApiOperation(value = "更新节点", notes = "传参link对象内,传入id,mainId,processLevel,status,dealReason或者dealRejectReason;type传3" + |
| | | "字段status:5-通过,8-驳回") |
| | | public Response updateLink(@RequestBody WorkflowLinkDTO linkDTO) { |