1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| package cn.ksource.web.service.flow;
|
| import java.util.List;
| import java.util.Map;
|
| import cn.ksource.beans.FlowRecord;
|
|
| /**
| * 流程记录操作结构
| * @author chenlong
| */
| @SuppressWarnings("rawtypes")
| public interface FlowRecordService {
|
| /**
| * 添加流程记录
| * @param flowDealRecord
| * @return
| * @author chenlong
| */
| boolean addRecord(FlowRecord flowRecord);
|
| /**
| * 根据业务Id获取流转类型
| * @param busId
| * @param extendText(扩展字段)
| * @return
| * @author chenlong
| */
| List<Map> getRecordListByBusId(String busId, String extend);
| }
|
|