| | |
| | | package com.yeshi.fanli.dao.mybatis.activity; |
| | | |
| | | import java.util.List; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import com.yeshi.fanli.entity.bus.activity.RecommendActivityTaoBaoGoods; |
| | | import com.yeshi.fanli.entity.taobao.TaoBaoGoodsBrief; |
| | | |
| | | public interface RecommendActivityTaoBaoGoodsMapper { |
| | | |
| | | int deleteByPrimaryKey(Long id); |
| | | |
| | | int batchDeleteByActivityid(long[] ids); |
| | | |
| | | int insert(RecommendActivityTaoBaoGoods record); |
| | | |
| | | int insertSelective(RecommendActivityTaoBaoGoods record); |
| | | |
| | | RecommendActivityTaoBaoGoods selectByPrimaryKey(Long id); |
| | | |
| | | int updateByPrimaryKeySelective(RecommendActivityTaoBaoGoods record); |
| | | |
| | | int updateByPrimaryKey(RecommendActivityTaoBaoGoods record); |
| | | |
| | | int updateStateByAuctionId(@Param("auctionId") Long auctionId, @Param("state") int state); |
| | | |
| | | List<TaoBaoGoodsBrief> getTaoBaoGoodsBriefByActivityId(Long activityId); |
| | | |
| | | List<RecommendActivityTaoBaoGoods> selectByActivityId(Long activityId); |
| | | |
| | | List<RecommendActivityTaoBaoGoods> selectByAuctionId(Long auctionId); |
| | | |
| | | List<RecommendActivityTaoBaoGoods> selectList(@Param("start") Long start, @Param("count") int count); |
| | | |
| | | package com.yeshi.fanli.dao.mybatis.activity;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.activity.RecommendActivityTaoBaoGoods;
|
| | |
|
| | | public interface RecommendActivityTaoBaoGoodsMapper {
|
| | |
|
| | | int deleteByPrimaryKey(Long id);
|
| | |
|
| | | int batchDeleteByActivityid(long[] ids);
|
| | |
|
| | | int insert(RecommendActivityTaoBaoGoods record);
|
| | |
|
| | | int insertSelective(RecommendActivityTaoBaoGoods record);
|
| | |
|
| | | RecommendActivityTaoBaoGoods selectByPrimaryKey(Long id);
|
| | |
|
| | | int updateByPrimaryKeySelective(RecommendActivityTaoBaoGoods record);
|
| | |
|
| | | int updateByPrimaryKey(RecommendActivityTaoBaoGoods record);
|
| | |
|
| | | int updateStateByAuctionId(@Param("auctionId") Long auctionId, @Param("state") int state);
|
| | |
|
| | |
|
| | | List<RecommendActivityTaoBaoGoods> selectByActivityId(Long activityId);
|
| | | |
| | | List<RecommendActivityTaoBaoGoods> selectByAuctionId(Long auctionId);
|
| | |
|
| | | List<RecommendActivityTaoBaoGoods> selectList(@Param("start") Long start, @Param("count") int count);
|
| | |
|
| | | } |