From 991e6e3da063c07c47f1cb951bc08a22fda588ed Mon Sep 17 00:00:00 2001
From: lizijie <lzjiiie@163.com>
Date: Thu, 29 Aug 2019 09:55:32 +0800
Subject: [PATCH] 站点排名

---
 src/main/java/com/moral/service/AccountService.java |   14 +++++++++++---
 1 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/src/main/java/com/moral/service/AccountService.java b/src/main/java/com/moral/service/AccountService.java
index 36cff2f..e93747f 100644
--- a/src/main/java/com/moral/service/AccountService.java
+++ b/src/main/java/com/moral/service/AccountService.java
@@ -2,6 +2,7 @@
 
 import java.util.List;
 import java.util.Map;
+import java.util.Optional;
 
 import com.moral.common.bean.PageBean;
 import com.moral.entity.Account;
@@ -12,14 +13,21 @@
 
 	Account getAccountByAccountName(String account);
 
-	void setOrgIdsByAccount(Map<String, Object> parameters);
+    Account getAccountById(Integer id);
+
+    void setOrgIdsByAccount(Map<String, Object> parameters);
 
 	PageBean<Account> getAccountListByPage(Map<String, Object> parameters);
 
 	Integer saveOrUpdateAccount(Account account);
 
-	Integer deleteAccountByLogic(Account account);
-
 	Integer deleteAccountsByLogic(List<Integer> ids);
 
+	Integer getAccountCountByAccountName(String accountName);
+
+	Optional<Account> queryAccountByName(String accountName);
+
+	Account companyLogin(Map<String, Object> parameters);
+	
+	Map<String, Object> getOrganizationIdByAccountId(String id);
 }

--
Gitblit v1.8.0