| | |
| | | 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 updateByPrimaryKey(RecommendActivityTaoBaoGoods record); |
| | | |
| | | int updateStateByAuctionId(@Param("auctionId") Long auctionId, @Param("state") int state); |
| | | int updateStateByAuctionId(@Param("auctionId") String auctionId, @Param("state") int state); |
| | | |
| | | List<TaoBaoGoodsBrief> getTaoBaoGoodsBriefByActivityId(Long activityId); |
| | | |
| | | List<RecommendActivityTaoBaoGoods> selectByActivityId(Long activityId); |
| | | |
| | | List<RecommendActivityTaoBaoGoods> selectByAuctionId(String auctionId); |
| | | |
| | | List<RecommendActivityTaoBaoGoods> selectList(@Param("start") Long start, @Param("count") int count); |
| | | |