linwe
2024-05-29 c10d6358b9f014375a13821465bc978d0c0da22e
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.ArticleLikeEntity;
 
/**
 * 通知点赞表 视图实体类
 *
 * @author BladeX
 * @since 2023-11-08
 */
@Data
@EqualsAndHashCode(callSuper = true)
public class ArticleLikeVO extends ArticleLikeEntity {
    private static final long serialVersionUID = 1L;
 
}