From 00a9bbf99abf3ecc343e501730826f5209de47e2 Mon Sep 17 00:00:00 2001
From: wuxw7 <wuxw7@asiainfo.com>
Date: 星期一, 24 七月 2017 00:50:07 +0800
Subject: [PATCH] 加入redis 和 ehcache 缓存系统,规则引擎服务彻底完工

---
 RuleService/src/main/java/com/java110/rule/dao/IRuleDao.java |   27 +++++++++++++++++++++++++++
 1 files changed, 27 insertions(+), 0 deletions(-)

diff --git a/RuleService/src/main/java/com/java110/rule/dao/IRuleDao.java b/RuleService/src/main/java/com/java110/rule/dao/IRuleDao.java
index 38a747e..691ec58 100644
--- a/RuleService/src/main/java/com/java110/rule/dao/IRuleDao.java
+++ b/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;
 }

--
Gitblit v1.8.0