移除学员的nickname字段

This commit is contained in:
none
2023-03-20 13:44:32 +08:00
parent f57e27783b
commit 48a1597998
7 changed files with 37 additions and 58 deletions

View File

@@ -8,18 +8,17 @@ import xyz.playedu.api.types.paginate.UserPaginateFilter;
import java.util.List;
/**
* @author tengteng
* @description 针对表【users】的数据库操作Mapper
* @createDate 2023-02-23 14:04:49
* @Entity xyz.playedu.api.domain.User
*/
* @author tengteng
* @description 针对表【users】的数据库操作Mapper
* @createDate 2023-03-20 13:37:33
* @Entity xyz.playedu.api.domain.User
*/
@Mapper
public interface UserMapper extends BaseMapper<User> {
List<User> paginate(UserPaginateFilter filter);
Long paginateCount(UserPaginateFilter filter);
}