| | |
| | | package com.yeshi.fanli.dao.mybatis.taobao; |
| | | |
| | | import java.util.List; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import com.yeshi.fanli.dao.BaseMapper; |
| | | import com.yeshi.fanli.entity.taobao.TaoBaoCoupon; |
| | | |
| | | public interface TaoBaoCouponMapper extends BaseMapper<TaoBaoCoupon>{ |
| | | |
| | | void deleteBeforeCouponInfo(Long id); |
| | | |
| | | |
| | | List<TaoBaoCoupon> getTaoBaoCouponList(@Param("start") long start, @Param("count") int count, @Param("key") String key); |
| | | |
| | | int getCount(@Param("key")String key); |
| | | |
| | | |
| | | |
| | | List<TaoBaoCoupon> getTaoBaoCouponListBykeys(@Param("start") long start, @Param("count") int count, @Param("list")List<String> list); |
| | | |
| | | |
| | | |
| | | int countTaoBaoCouponListBykeys(@Param("list")List<String> list); |
| | | |
| | | |
| | | TaoBaoCoupon getTaoBaoCouponByActionId(@Param("auctionId") String auctionId); |
| | | package com.yeshi.fanli.dao.mybatis.taobao;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | import com.yeshi.fanli.dao.BaseMapper;
|
| | | import com.yeshi.fanli.entity.taobao.TaoBaoCoupon;
|
| | |
|
| | | public interface TaoBaoCouponMapper extends BaseMapper<TaoBaoCoupon>{
|
| | | |
| | | void deleteBeforeCouponInfo(Long id);
|
| | | |
| | | |
| | | List<TaoBaoCoupon> getTaoBaoCouponList(@Param("start") long start, @Param("count") int count, @Param("key") String key);
|
| | | |
| | | int getCount(@Param("key")String key);
|
| | | |
| | | |
| | | |
| | | List<TaoBaoCoupon> getTaoBaoCouponListBykeys(@Param("start") long start, @Param("count") int count, @Param("list")List<String> list);
|
| | | |
| | | |
| | | |
| | | int countTaoBaoCouponListBykeys(@Param("list")List<String> list);
|
| | | |
| | | |
| | | TaoBaoCoupon getTaoBaoCouponByActionId(@Param("auctionId") String auctionId);
|
| | | } |