1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.highdatas.mdm.service;
|
| import com.highdatas.mdm.entity.Flows;
| import com.highdatas.mdm.pojo.ActivitiBusinessType;
| import com.highdatas.mdm.pojo.Result;
|
| import javax.servlet.http.HttpSession;
|
| public interface ActivitiService {
| Flows start(String key, HttpSession session, String maintainId, ActivitiBusinessType type);
|
| Result todoTask(HttpSession session, String tableName, Integer pageNo, Integer pageSize);
|
|
| }
|
|