admin
2018-12-12 205f8ba403095b4894d026f800d2651223c19d00
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.yeshi.fanli.dao.mybatis.user;
 
import java.util.List;
 
import org.apache.ibatis.annotations.Param;
 
import com.yeshi.fanli.entity.bus.user.UserGoodsStorage;
 
public interface UserGoodsStorageMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insert(UserGoodsStorage record);
 
    int insertSelective(UserGoodsStorage record);
 
    UserGoodsStorage selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(UserGoodsStorage record);
 
    int updateByPrimaryKey(UserGoodsStorage record);
    
    /**
     * 根据主键批量删除
     * @param list
     * @return
     */
    int deleteBatchByPrimaryKey(List<Long> list);
    
    /**
     * 批量选择更新
     * @param list
     * @return
     */
    int updateBatchSelective(List<UserGoodsStorage> list);
    
    /**
     * 查询用户对应的选品库
     * @param start
     * @param count
     * @param uid
     * @return
     */
    List<UserGoodsStorage> listQueryByUid(@Param("start") long start, @Param("count") int count, 
            @Param("uid") Long uid);
    
    long countQueryByUid(@Param("uid") Long uid);
    
    /**
     * 根据用户id、 简版商品 id(CommonGoods.id)
     * @param uid 用户id
     * @param cid 商品id(CommonGoods.id)
     * @return
     */
    UserGoodsStorage getByUidAndCid(@Param("uid") Long uid, @Param("cid") Long cid);
    
    
    /**
     * 根据主键 、uid 批量删除
     * @param list
     * @return
     */
    int deleteBatchByUidAndPrimaryKey(@Param("uid") Long uid, @Param("list") List<Long> list);
    
    
    /**
     * 根据用户id、淘宝商品 id
     * @param uid 用户id
     * @param auctionId 淘宝商品 id
     * @return
     */
    UserGoodsStorage getByUidAndAuctionId(@Param("uid") Long uid, @Param("auctionId") Long auctionId);
    
    
    /**
     * 根据多个主键获取商品
     * @param list
     * @return
     */
    List<UserGoodsStorage>  listQueryByIds(List<Long> list);
    
    void updateShareState(@Param("shareId") Long shareId);
}