| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.ruoyi.account.api.model.UserPoint; |
| | | import com.ruoyi.account.api.model.UserPointCopy; |
| | | import com.ruoyi.account.vo.UserPointDetailVO; |
| | | import com.ruoyi.common.core.web.page.PageInfo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | IPage<UserPoint> queryUserPointPage(@Param("page") IPage<UserPoint> page,@Param("userPoint") UserPoint userPoint); |
| | | |
| | | List<UserPoint> selectUserPoint(@Param("userPoint") UserPoint userPoint); |
| | | |
| | | |
| | | /** |
| | | * 查询积分变更记录 |
| | | * @param pageInfo |
| | | * @param userId |
| | | * @param startTime |
| | | * @param endTime |
| | | * @param type |
| | | * @return |
| | | */ |
| | | List<UserPointDetailVO> getUserPointDetail(PageInfo<UserPointDetailVO> pageInfo, @Param("userId") Long userId, @Param("startTime") LocalDateTime startTime, |
| | | @Param("endTime") LocalDateTime endTime, @Param("type") Integer type); |
| | | } |