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 getRecordListByBusId(String busId, String extend); }