mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-06 09:26:48 +08:00
案例萃取,最佳时间
This commit is contained in:
@@ -509,7 +509,11 @@ public class CasesServiceImpl implements ICasesService {
|
||||
|
||||
// 拼接生成年度最佳标签
|
||||
if (e.getExcellent()!=null && e.getExcellent()) {
|
||||
e.setExcellentTag(e.getExcellentTime().format(DateTimeFormatter.ofPattern("yy年"))+"度最佳");
|
||||
if (e.getDraftingTime()!=null){
|
||||
e.setExcellentTag(e.getDraftingTime().format(DateTimeFormatter.ofPattern("yy年"))+"度最佳");
|
||||
} else {
|
||||
e.setExcellentTag(e.getSysCreateTime().format(DateTimeFormatter.ofPattern("yy年"))+"度最佳");
|
||||
}
|
||||
}
|
||||
|
||||
List<String> authorTags = new ArrayList<>();
|
||||
|
||||
Reference in New Issue
Block a user