| | |
| | | import cn.gistack.flow.core.vo.BladeFlowVO; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 流程业务类 |
| | | * |
| | |
| | | * @return |
| | | */ |
| | | IPage<BladeFlow> selectTodoPage(IPage<BladeFlow> page, BladeFlow bladeFlow); |
| | | |
| | | List<BladeFlow> getMyToDoList(BladeFlow bladeFlow,String currentUserId); |
| | | |
| | | /** |
| | | * 流程待办列表 |
| | |
| | | */ |
| | | IPage<BladeFlow> selectDonePage(IPage<BladeFlow> page, BladeFlow bladeFlow); |
| | | |
| | | List<BladeFlow> getMyDoneList(BladeFlow bladeFlow, String currentUserId); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 流程办结列表 |
| | | * |
| | |
| | | boolean completeTask(BladeFlow leave); |
| | | |
| | | BladeFlow getBladeFlowByBusinessId(String businessId,String currentUserId); |
| | | |
| | | |
| | | List<BladeFlow> getMyDonePage(BladeFlow bladeFlow, String currentUserId, Integer current, Integer size); |
| | | } |