fengxiang
2017-12-22 3e2436955a5daf512098dc879c470ee88ce003eb
src/main/java/com/moral/service/AccountService.java
@@ -3,16 +3,23 @@
import java.util.List;
import java.util.Map;
import com.moral.common.bean.PageBean;
import com.moral.entity.Account;
public interface AccountService {
   Map<String, Object> screenLogin(Map<String, Object> parameters);
   List<Account> getAccountLists(String account, String password);
   List<Account> getAccountList(String account);
   Account getAccountByAccountName(String account);
   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);
}