| | |
| | | |
| | | import com.jilongda.applet.model.TCouponReceive; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.jilongda.applet.query.TCouponQuery; |
| | | import com.jilongda.applet.vo.TCouponReceiveVO; |
| | | import com.jilongda.common.basic.PageInfo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface TCouponReceiveMapper extends BaseMapper<TCouponReceive> { |
| | | |
| | | /** |
| | | * 分页查询优惠券领取记录 |
| | | * @param query |
| | | * @param pageInfo |
| | | * @return |
| | | */ |
| | | List<TCouponReceiveVO> pageList(@Param("query") TCouponQuery query, @Param("pageInfo")PageInfo<TCouponReceiveVO> pageInfo); |
| | | |
| | | } |