yujian
2020-05-06 a338d86bcaf17f2ba9296a601cdbda4d3e9baae0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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);
 
}