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.
|
|
|
|
package com.youlai.boot.mini.mapper;
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
|
|
import com.youlai.boot.mini.model.entity.MiniPointAccount;
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
|
import com.youlai.boot.mini.model.query.PointAccountQuery;
|
|
|
|
|
import com.youlai.boot.mini.model.vo.PointAccountVO;
|
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 用户积分表 Mapper 接口
|
|
|
|
|
*
|
|
|
|
|
* @author jwy
|
|
|
|
|
* @since
|
|
|
|
|
*/
|
|
|
|
|
public interface MiniPointAccountMapper extends BaseMapper<MiniPointAccount> {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 分页查询用户积分账户(关联用户表)
|
|
|
|
|
*/
|
|
|
|
|
IPage<PointAccountVO> pageAccount(Page<MiniPointAccount> page, @Param("query") PointAccountQuery queryParams);
|
|
|
|
|
|
|
|
|
|
}
|