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
|
|
}
|
|
}
|