wuxw
2019-04-25 d4e1929dcab147030d3bcae89b1801250fd6a5da
RuleService/src/main/java/com/java110/rule/dao/IRuleDao.java
@@ -1,5 +1,8 @@
package com.java110.rule.dao;
import com.java110.entity.rule.Rule;
import com.java110.entity.rule.RuleEntrance;
import java.util.List;
import java.util.Map;
@@ -19,4 +22,28 @@
    public String executeProc(String transactionId,String paramIn,String procName) throws Exception;
    /**
     *  查询Rule_Entrance
     * @return
     * @throws Exception
     */
    public Map<String,RuleEntrance> getRuleEntranceMap() throws Exception;
    /**
     * 查询规则组关系信息
     * @return
     * @throws Exception
     */
    public  List getRuleGroupRelaList() throws Exception;
    /**
     * 查询规则信息
     * @return
     * @throws Exception
     */
    public Map<String, Rule> getRuleMap() throws Exception;
}