| | |
| | | |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | |
| | | /** |
| | | * @author kimi |
| | | * @description |
| | |
| | | |
| | | @Service |
| | | public interface RuntimeService extends BaseService{ |
| | | public void getList(); |
| | | public void startProcess(String processId); |
| | | public void suspendProcess(String processId); |
| | | public void activateProcess(String processId); |
| | | public void getDiagram(String processId, HttpServletResponse response); |
| | | public void getActivitiProccessImage(String processId, HttpServletResponse response); |
| | | |
| | | } |