You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
353 B

package work.xiaohh.vue.service;
import work.xiaohh.vue.entity.VueUser;
import java.util.List;
/**
* <p>
* 用户业务服务层接口
* </p>
*
* @author XiaoHH
* @version 1.0.0
*/
public interface VueUserService {
/**
* 查询所有用户列表
*
* @return 用户列表
*/
List<VueUser> selectAllVueUserList();
}