| | |
| | | package com.mzl.flower.mapper.point; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.mzl.flower.entity.point.CustomerPointDetail; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.mzl.flower.dto.request.point.QueryExchangeGoodsDTO; |
| | | import com.mzl.flower.dto.response.point.PointGoodsRecordDTO; |
| | | import com.mzl.flower.entity.point.PointGoodsRecord; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Repository |
| | | public interface PointGoodsRecordMapper extends BaseMapper<CustomerPointDetail> { |
| | | public interface PointGoodsRecordMapper extends BaseMapper<PointGoodsRecord> { |
| | | List<PointGoodsRecordDTO> selectMyExchangeGoods(@Param("dto") QueryExchangeGoodsDTO dto, Page page); |
| | | } |