TestUserService.java 541 Bytes
Newer Older
1 2
package cn.wisenergy.service.app;

3
import cn.wisenergy.model.dto.UserSimpleInfoDto;
licc's avatar
licc committed
4
import cn.wisenergy.model.dto.UsersInfoDto;
5 6

import java.util.List;
7 8 9 10 11 12 13

/**
 * @Authotr:陈奇
 * @QQ1799796883
 */
public interface TestUserService {

14 15 16 17 18 19 20 21 22 23 24 25 26 27
    /**
     * 查询下级用户的基本信息
     * @param userId 用户id
     * @return
     */
    List<UserSimpleInfoDto> getDownUserInfoById(Long userId);


    /**
     * 查询用户详细信息
     * @param userId 用户id
     * @return
     */
    UsersInfoDto getUserInfoById(Long userId);
28
}