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.
26 lines
572 B
26 lines
572 B
|
|
package com.service;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import com.baomidou.mybatisplus.mapper.Wrapper;
|
|
import com.baomidou.mybatisplus.service.IService;
|
|
import com.entity.UserEntity;
|
|
import com.utils.PageUtils;
|
|
|
|
|
|
/**
|
|
* 系统用户
|
|
*/
|
|
public interface UserService extends IService<UserEntity> {
|
|
PageUtils queryPage(Map<String, Object> params);
|
|
|
|
List<UserEntity> selectListView(Wrapper<UserEntity> wrapper);
|
|
|
|
PageUtils queryPage(Map<String, Object> params,Wrapper<UserEntity> wrapper);
|
|
|
|
}
|