Blame view

src/main/java/com/canrd/webmagic/domain/dto/ArticleDO.java 1.18 KB
谢茂盛 authored
1
2
3
4
5
6
package com.canrd.webmagic.domain.dto;

import com.baomidou.mybatisplus.annotation.TableName;
import lombok.*;
import lombok.experimental.SuperBuilder;
7
8
import java.io.Serializable;
谢茂盛 authored
9
10
11
12
13
14
/**
 * nature-文章信息(NatureArticle)实体类
 *
 * @author makejava
 * @since 2024-04-07 18:39:38
 */
谢茂盛 authored
15
@TableName("article")
谢茂盛 authored
16
17
18
19
20
21
@Data
@AllArgsConstructor
@ToString
@NoArgsConstructor
@EqualsAndHashCode(callSuper = false)
@SuperBuilder
谢茂盛 authored
22
public class ArticleDO implements Serializable {
谢茂盛 authored
23
24
25
    private static final long serialVersionUID = 890672868109538541L;

    private Long id;
谢茂盛 authored
26
27
28
29
30
31

    /**
     * 文章类型:ArticleTypeEnum
     */
    private String articleType;
谢茂盛 authored
32
33
34
35
    /**
     * 作者名称
     */
    private String authorName;
36
37
38
39
40
41

    /**
     * 文章标识
     */
    private String articleCode;
谢茂盛 authored
42
43
44
45
    /**
     * 文章标题
     */
    private String title;
46
谢茂盛 authored
47
48
49
50
    /**
     * 发布时间
     */
    private String publishTime;
51
谢茂盛 authored
52
53
54
55
56
    /**
     * 邮箱信息
     */
    private String emailInfo;
谢茂盛 authored
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
    /**
     * 文章摘要
     */
    private String articleDesc;

    /**
     * 作者地址
     */
    private String authorAddress;

    /**
     * 相关文章引用信息
     */
    private String referenceInfo;
谢茂盛 authored
72
}