c5a6e046 by joe

no message

1 parent 38e9f7bd
......@@ -32,9 +32,6 @@ public class ScoreLogInfoServiceImpl implements ScoreLogInfoService {
@Autowired
private ShareLogMapper shareLogMapper;
@Autowired
private ScoreLogInfoService scoreLogInfoService;
@Override
public String save(ScoreLogInfo scoreLogInfo) {
String code = "2000";
......@@ -50,7 +47,7 @@ public class ScoreLogInfoServiceImpl implements ScoreLogInfoService {
code = "9901";
}else{
long count = this.countToDay(scoreLogInfo.getOpenid());
long s = this.scoreLogInfoService.shareToday(scoreLogInfo.getOpenid());
long s = this.shareToday(scoreLogInfo.getOpenid());
if (s > 5) {
s = 5;
}
......