Enhance user timeline post metadata and grouping

This commit is contained in:
Tim
2025-09-19 00:31:52 +08:00
parent 4cc2800f09
commit e7593c8ebf
6 changed files with 405 additions and 91 deletions

View File

@@ -1,6 +1,7 @@
package com.openisle.dto;
import java.time.LocalDateTime;
import java.util.List;
import lombok.Data;
/** Lightweight post metadata used in user profile lists. */
@@ -11,6 +12,8 @@ public class PostMetaDto {
private String title;
private String snippet;
private LocalDateTime createdAt;
private String category;
private CategoryDto category;
private List<TagDto> tags;
private long views;
private long commentCount;
}