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
414 B
23 lines
414 B
package com.demo.dao;
|
|
|
|
import com.demo.pojo.User;
|
|
import com.demo.pojo.UserExample;
|
|
|
|
import java.util.List;
|
|
|
|
public interface UserMapper extends SysDao<User>{
|
|
|
|
List<User> selectByExample(UserExample example);
|
|
|
|
/**
|
|
* 停用管理员账号
|
|
* @param name
|
|
*/
|
|
void enableStatus(String name);
|
|
|
|
/**
|
|
* 开启管理员账号
|
|
* @param name
|
|
*/
|
|
void stopStatus(String name);
|
|
} |