| | |
| | |
|
| | | import javax.annotation.Resource;
|
| | |
|
| | | import org.springframework.cache.annotation.Cacheable;
|
| | | import org.springframework.stereotype.Service;
|
| | |
|
| | | import com.yeshi.fanli.entity.integral.IntegralTask;
|
| | |
| | | import com.yeshi.fanli.service.inter.integral.IntegralGetService;
|
| | | import com.yeshi.fanli.service.inter.integral.IntegralTaskRecordService;
|
| | | import com.yeshi.fanli.service.inter.integral.IntegralTaskService;
|
| | | import com.yeshi.fanli.util.RedisManager;
|
| | |
|
| | | import net.sf.json.JSONObject;
|
| | |
|
| | |
| | |
|
| | | @Resource
|
| | | private IntegralTaskRecordService integralTaskRecordService;
|
| | |
|
| | | @Resource
|
| | | private RedisManager redisManager;
|
| | |
|
| | | @Override
|
| | | public IntegralTaskRecord addEventStatistic(Long uid, String event, JSONObject params) throws IntegralGetException {
|
| | |
| | |
|
| | | }
|
| | |
|
| | | @Cacheable(value = "integralGetCache", key = "'addSearchResultScan-'+#uid+'-'+#kw")
|
| | | @Override
|
| | | public void addSearchResultScan(Long uid) throws IntegralGetException {
|
| | | // TODO Auto-generated method stub
|
| | |
|
| | | public void addSearchResultScan(Long uid, String kw) throws IntegralGetException {
|
| | | System.out.println("搜索");
|
| | | }
|
| | |
|
| | | @Override
|
| | | public void addShareInvite(Long uid) throws IntegralGetException {
|
| | | // TODO Auto-generated method stub
|
| | |
|
| | | }
|
| | |
|