package cn.wisenergy.service.app; import cn.wisenergy.common.utils.R; import cn.wisenergy.model.dto.AccountDto; import cn.wisenergy.model.vo.AccountLoginVo; public interface AccountSerivce { /** * 查询管理员信息 * @param accountLoginVo 查询参数 * @return 管理员信息 */ R<AccountDto> getAccountInfo(AccountLoginVo accountLoginVo); }