admin
2019-08-20 398f41e16c0230a94d277e297eba17b5839db71c
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
84
85
86
87
88
89
package com.yeshi.fanli.service.impl.integral;
 
import org.springframework.stereotype.Service;
 
import com.yeshi.fanli.exception.integral.IntegralGetException;
import com.yeshi.fanli.service.inter.integral.IntegralGetService;
 
import net.sf.json.JSONObject;
 
@Service
public class IntegralGetServiceImpl implements IntegralGetService {
 
    @Override
    public void addEventStatistic(Long uid, String event, JSONObject params) throws IntegralGetException {
        switch (event) {
        case "recommendSearch":
            break;
        case "shareInvite":
            break;
        case "inShop":
            break;
        case "scanPush":
            break;
        case "scanGoods":
            break;
        case "scanHomeBanner":
            break;
        case "scanSpecial":
            break;
        case "scanTBCart":
            break;
        }
    }
 
    @Override
    public void addRecommendSearch(Long uid) throws IntegralGetException {
        // TODO Auto-generated method stub
 
    }
 
    @Override
    public void addSearchResultScan(Long uid) throws IntegralGetException {
        // TODO Auto-generated method stub
 
    }
 
    @Override
    public void addShareInvite(Long uid) throws IntegralGetException {
        // TODO Auto-generated method stub
 
    }
 
    @Override
    public void addIntoShop(Long uid) throws IntegralGetException {
        // TODO Auto-generated method stub
 
    }
 
    @Override
    public void addScanPushHistory(Long uid) throws IntegralGetException {
        // TODO Auto-generated method stub
 
    }
 
    @Override
    public void addScanGoodsDetail(Long uid, int goodsType, Long goodsId) {
        // TODO Auto-generated method stub
 
    }
 
    @Override
    public void addScanRecommendBanner(Long uid) {
        // TODO Auto-generated method stub
 
    }
 
    @Override
    public void addScanRecommendSpecial(Long uid) {
        // TODO Auto-generated method stub
 
    }
 
    @Override
    public void addScanTaoBaoCart(Long uid) {
        // TODO Auto-generated method stub
 
    }
 
}