no message
Showing
1 changed file
with
1 additions
and
4 deletions
... | @@ -32,9 +32,6 @@ public class ScoreLogInfoServiceImpl implements ScoreLogInfoService { | ... | @@ -32,9 +32,6 @@ public class ScoreLogInfoServiceImpl implements ScoreLogInfoService { |
32 | @Autowired | 32 | @Autowired |
33 | private ShareLogMapper shareLogMapper; | 33 | private ShareLogMapper shareLogMapper; |
34 | 34 | ||
35 | @Autowired | ||
36 | private ScoreLogInfoService scoreLogInfoService; | ||
37 | |||
38 | @Override | 35 | @Override |
39 | public String save(ScoreLogInfo scoreLogInfo) { | 36 | public String save(ScoreLogInfo scoreLogInfo) { |
40 | String code = "2000"; | 37 | String code = "2000"; |
... | @@ -50,7 +47,7 @@ public class ScoreLogInfoServiceImpl implements ScoreLogInfoService { | ... | @@ -50,7 +47,7 @@ public class ScoreLogInfoServiceImpl implements ScoreLogInfoService { |
50 | code = "9901"; | 47 | code = "9901"; |
51 | }else{ | 48 | }else{ |
52 | long count = this.countToDay(scoreLogInfo.getOpenid()); | 49 | long count = this.countToDay(scoreLogInfo.getOpenid()); |
53 | long s = this.scoreLogInfoService.shareToday(scoreLogInfo.getOpenid()); | 50 | long s = this.shareToday(scoreLogInfo.getOpenid()); |
54 | if (s > 5) { | 51 | if (s > 5) { |
55 | s = 5; | 52 | s = 5; |
56 | } | 53 | } | ... | ... |
-
Please register or sign in to post a comment