1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package org.springblade.modules.article.vo;
|
| import lombok.Data;
| import lombok.EqualsAndHashCode;
| import org.springblade.modules.article.entity.ArticleCollectEntity;
|
| /**
| * 通知评论表 视图实体类
| *
| * @author BladeX
| * @since 2023-11-08
| */
| @Data
| @EqualsAndHashCode(callSuper = true)
| public class ArticleCommentVO extends ArticleCollectEntity {
| private static final long serialVersionUID = 1L;
|
| }
|
|