admin
2022-08-25 146dbd5ed24c1fe63766aa45e0ce602caa39748e
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
package com.yeshi.fanli.service.inter.goods;
 
import com.yeshi.fanli.entity.taobao.PidUser;
import com.yeshi.fanli.entity.taobao.ShareTaoPassword;
 
public interface ShareService {
 
    String getRandomPid();
 
    void insertShareTaoPassword(ShareTaoPassword shareTaoPassword);
 
    String isBind(long uid);
 
    void insertPidUser(PidUser pidUser);
 
    int getAunctionPidCount(String auctionId, String pid);
 
    ShareTaoPassword getShareTaoPassword(String auctionId, String pid);
 
    void updateByPrimaryKeySelective(ShareTaoPassword shareTaoPassword);
 
    /**
     * 生成用户对应的PID
     * @param uid
     * @return
     */
    PidUser createPidUserByUid(Long uid);
    
    /**
     * 
     * 方法说明: 获取分享赚 count
     * @author mawurui
     * createTime 2018年4月16日 上午10:52:06
     * @param uid
     * @return
     */
    int getCount(long uid);
 
 
    /**
     * 
     * 方法说明: 获取邀请赚count
     * @author mawurui
     * createTime 2018年4月16日 上午11:27:01
     * @param uid
     * @return
     */
    int getInviteCount(long uid);
 
    /**
     * 
     * 方法说明: 查询所有用户分享赚列表总数
     * @author mawurui
     * createTime 2018年4月24日 下午3:40:42
     * @return
     */
    int getShareMoneyCount();
 
    
 
}