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
538 B
23 lines
538 B
|
|
package com.dao;
|
|
|
|
import java.util.List;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
import com.baomidou.mybatisplus.mapper.BaseMapper;
|
|
import com.baomidou.mybatisplus.mapper.Wrapper;
|
|
import com.baomidou.mybatisplus.plugins.pagination.Pagination;
|
|
import com.entity.TokenEntity;
|
|
|
|
/**
|
|
* token
|
|
*/
|
|
public interface TokenDao extends BaseMapper<TokenEntity> {
|
|
|
|
List<TokenEntity> selectListView(@Param("ew") Wrapper<TokenEntity> wrapper);
|
|
|
|
List<TokenEntity> selectListView(Pagination page,@Param("ew") Wrapper<TokenEntity> wrapper);
|
|
|
|
}
|