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