From 8a447052fc1408a321c4aa3cc2c4ee2a7c45941e Mon Sep 17 00:00:00 2001
From: ZhuDongming <773644075@qq.com>
Date: Wed, 04 Dec 2019 14:18:02 +0800
Subject: [PATCH] 更新重新触发弹窗清空infowindow

---
 src/main/java/com/moral/mapper/AccountMapper.java |   22 +++++++++++++++++++++-
 1 files changed, 21 insertions(+), 1 deletions(-)

diff --git a/src/main/java/com/moral/mapper/AccountMapper.java b/src/main/java/com/moral/mapper/AccountMapper.java
index 3c54a7f..6fc6fc0 100644
--- a/src/main/java/com/moral/mapper/AccountMapper.java
+++ b/src/main/java/com/moral/mapper/AccountMapper.java
@@ -3,9 +3,29 @@
 import java.util.List;
 import java.util.Map;
 
+import org.apache.ibatis.annotations.Param;
+
 import com.moral.common.mapper.BaseMapper;
 import com.moral.entity.Account;
+import com.moral.entity.Menu;
+import com.moral.entity.Role;
 
 public interface AccountMapper extends BaseMapper<Account> {
-	List<Map<String, Object>> getRoleNameByAccountId(Integer accountId);
+
+    List<Map<String, Object>> getRoleNameByAccountId(Integer accountId);
+
+    Account getByAccountName(String name);
+
+    Map<String, Object> getOrganizationIdByAccountId(Integer accountId);
+
+    List<Account> getAccountList(@Param("accountName") String accountName);
+
+    List<Role> getRolesByAccountName(@Param("accountName") String accountName);
+
+    List<Menu> getParentMenuListsByAccountName(@Param("accountName") String accountName);
+
+    String getEmailByAccountName(@Param("accountName") String accountName);
+
+    List<Menu> getChildMenuIdsByAccountName(@Param("accountName") String accountName, @Param("id") Integer id);
+
 }
\ No newline at end of file

--
Gitblit v1.8.0