wuxw
2019-08-09 bf47d41dddf76c58a41692e492014499f9d433ae
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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;
 
/**
 * Created by wuxw on 2017/7/23.
 */
public interface IRuleDao {
 
 
    /**
     * 执行 sql
     * @param sql
     * @return
     * @throws Exception
     */
    public List<Map<String,String>> executeSql(String sql) throws Exception;
 
 
    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;
}