fengxiang
2018-09-27 3c3f6b4816efe48645866a6ebc1581eb522dc229
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,7 +13,9 @@
   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);
@@ -20,4 +23,9 @@
   Integer deleteAccountsByLogic(List<Integer> ids);
   Integer getAccountCountByAccountName(String accountName);
   Optional<Account> queryAccountByName(String accountName);
   Account companyLogin(Map<String, Object> parameters);
}