| | |
| | | |
| | | |
| | | @PostMapping("approve") |
| | | @ApiOperation(value = "总经理审批",notes = "传参:int id,int linkStatus,String dealReason,int mainId;" + |
| | | @ApiOperation(value = "总经理审批",notes = "传参:int id,int linkStatus,String dealReason,int mainId,int rejectVersion;" + |
| | | "linkStatus:1通过,2驳回,驳回到员工,通知经理;dealReason:审核意见") |
| | | public Response approve(@RequestBody WorksheetLink link){ |
| | | service.approve(link); |
| | | public Response approve(@RequestBody WorksheetLink link,Integer componentProductFlag){ |
| | | service.approve(link,componentProductFlag); |
| | | return new Response().setII(1,"审批完成"); |
| | | } |
| | | |