前端
后端部分
通用
Appearance
interface ArticleInterface<T, D> { title: string isLock: T comments: D } interface CommentType { content: string author: string } const article: ArticleInterface<boolean, CommentType> = {}