package com.mzl.flower.mapper.point; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.mzl.flower.dto.request.point.PointGoodsQueryDTO; import com.mzl.flower.dto.response.point.PointGoodsListDTO; import com.mzl.flower.entity.point.PointGoods; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface PointGoodsMapper extends BaseMapper { List selectGoodsList(Page page, @Param("condition") PointGoodsQueryDTO dto); }