mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-13 12:56:48 +08:00
Merge branch 'refs/heads/zcwy0813-yang' into dev0525
This commit is contained in:
@@ -519,12 +519,10 @@ public class CasesServiceImpl implements ICasesService {
|
||||
}
|
||||
|
||||
if (excellentCountMap.get(e.getAuthorId())!=null){
|
||||
String authorTagOfExcellent = "最佳案例" + excellentCountMap.get(e.getAuthorId()) + "篇";
|
||||
String authorTagOfExcellent = excellentCountMap.get(e.getAuthorId()) + "篇最佳案例";
|
||||
authorTags.add(authorTagOfExcellent);
|
||||
}
|
||||
|
||||
e.setAuthorTags(authorTags);
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
@@ -1259,7 +1257,7 @@ public class CasesServiceImpl implements ICasesService {
|
||||
}
|
||||
|
||||
LocalDateTime startTime = month.withDayOfMonth(1);
|
||||
LocalDateTime endTime = month.plusMonths(1).withDayOfMonth(1).minusDays(1);
|
||||
LocalDateTime endTime = month.plusMonths(1).withDayOfMonth(1).withMinute(0);
|
||||
|
||||
List<String> caseIdList = casesRankDao.findPopularityOfMajor(pageSize, startTime, endTime,majorId);
|
||||
QueryBuilder query = QueryBuilder.from(Cases.class);
|
||||
|
||||
Reference in New Issue
Block a user