AccountSerivce.java 323 Bytes
Newer Older
liaoanyuan's avatar
liaoanyuan committed
1 2 3 4 5 6 7 8 9 10 11 12 13
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);
}