| | |
| | |
|
| | | import com.moral.common.bean.PageBean;
|
| | | import com.moral.entity.Account;
|
| | | import com.moral.entity.Role;
|
| | |
|
| | | public interface AccountService {
|
| | |
|
| | | Map<String, Object> screenLogin(Map<String, Object> parameters);
|
| | |
|
| | | Map<String, Object> screenLoginNew(Map<String, Object> parameters);
|
| | |
|
| | | Account getAccountByAccountName(String account);
|
| | |
|
| | |
| | | Account companyLogin(Map<String, Object> parameters);
|
| | |
|
| | | Map<String, Object> getOrganizationIdByAccountId(String id);
|
| | |
|
| | | List<Role> getRolesByAccountName(String accountName);
|
| | |
|
| | | Map<String, Object> getMenuListsByAccountName(String accountName);
|
| | | }
|