inleft
2022-02-17 4d51af31b49927bf401e432138d584f9ef40ef22
commit | author | age
9bcb19 1 /*
I 2 Copyright [2020] [https://www.xiaonuo.vip]
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8   http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15
16 Snowy采用APACHE LICENSE 2.0开源协议,您在使用过程中,需要注意以下几点:
17
18 1.请不要删除和修改根目录下的LICENSE文件。
19 2.请不要删除和修改Snowy源码头部的版权声明。
20 3.请保留源码和相关描述文件的项目出处,作者声明等。
21 4.分发源码时候,请注明软件出处 https://gitee.com/xiaonuobase/snowy
22 5.在修改包名,模块名称,项目代码等时,请注明软件出处 https://gitee.com/xiaonuobase/snowy
23 6.若您的项目无法满足以上几点,可申请商业授权,获取Snowy商业授权许可,请在官网购买授权,地址为 https://www.xiaonuo.vip
24  */
25 package vip.xiaonuo.modular.blogarticle.entity;
26
27 import cn.afterturn.easypoi.excel.annotation.Excel;
4d51af 28 import com.baomidou.mybatisplus.annotation.*;
9bcb19 29 import lombok.Data;
I 30
31 import java.util.Date;
32
33 /**
34  * blog文章主体
35  *
36  * @author inleft
37  * @date 2022-01-22 16:53:06
38  */
39 @Data
40 @TableName("blog_article")
41 public class BlogArticle{
42
43     /**
44      * 主键
45      */
46     @TableId(type = IdType.ASSIGN_ID)
47     private Long id;
48
49     /**
50      * 文章标题
51      */
52     @Excel(name = "文章标题")
53     private String title;
54
55     /**
56      * 文章文件id
57      */
58     @Excel(name = "文章文件id")
59     private Long articleFileId;
60
61     /**
62      * 文件类型 1:markdown 2:html
63      */
64     @Excel(name = "文件类型 1:markdown 2:html")
65     private Integer articleFileType;
66
67     /**
68      * 文章分类id 0:没有分类
69      */
70     @Excel(name = "文章分类id 0:没有分类")
71     private Long articleTypeId;
72
73     /**
74      * 文章引言
75      */
76     @Excel(name = "文章引言")
77     private String introduce;
78
79     /**
80      * 封面文件地址(id)
81      */
82     @Excel(name = "封面文件地址(id)")
83     private Long coverFileId;
84
85     /**
86      * 上次编辑时间
87      */
88     @Excel(name = "上次编辑时间", databaseFormat = "yyyy-MM-dd HH:mm:ss", format = "yyyy-MM-dd", width = 20)
89     private Date lastEditorDate;
90
91     /**
92      * 发布时间
93      */
94     @Excel(name = "发布时间", databaseFormat = "yyyy-MM-dd HH:mm:ss", format = "yyyy-MM-dd", width = 20)
95     private Date publishDate;
96
97     /**
98      * 是否置顶 0:否 1:是
99      */
100     @Excel(name = "是否置顶 0:否 1:是")
101     private Integer isTop;
102
103     /**
104      * 置顶值(越小越靠前)
105      */
106     @Excel(name = "置顶值(越小越靠前)")
107     private Integer topValue;
108
109     /**
110      * 公开状态 1:公开 2:私密 3:密码授权
111      */
112     @Excel(name = "公开状态 1:公开 2:私密 3:密码授权")
113     private Integer authStatus;
114
115     /**
116      * 授权密码(在密码授权状态时)
117      */
118     @Excel(name = "授权密码(在密码授权状态时)")
119     private String authPassword;
120
121     /**
122      * 编辑状态 0:草稿 1:发布
123      */
124     @Excel(name = "编辑状态 0:草稿 1:发布")
125     private Integer editorStatus;
126
127     /**
128      * 归档年份(以初次发布时间为准)
129      */
130     @Excel(name = "归档年份(以初次发布时间为准)")
131     private Integer separateYear;
132
133     /**
134      * 归档月份
135      */
136     @Excel(name = "归档月份")
137     private Integer separateMonth;
138
139     /**
140      * 归档日
141      */
142     @Excel(name = "归档日")
143     private Integer separateDay;
144
145     /**
146      * 是否启用 0:否 1:是
147      */
148     @Excel(name = "是否启用 0:否 1:是")
149     private Integer isEnable;
150
151     /**
152      * 更新时间
153      */
154     @Excel(name = "更新时间", databaseFormat = "yyyy-MM-dd HH:mm:ss", format = "yyyy-MM-dd", width = 20)
4d51af 155     @TableField(fill = FieldFill.INSERT_UPDATE)
9bcb19 156     private Date updateDate;
I 157
158     /**
159      * 创建时间
160      */
161     @Excel(name = "创建时间", databaseFormat = "yyyy-MM-dd HH:mm:ss", format = "yyyy-MM-dd", width = 20)
4d51af 162     @TableField(fill = FieldFill.INSERT)
9bcb19 163     private Date createDate;
I 164
165 }