inleft
2022-02-15 d734432a8bbbf863dc3de305f56e831c56ac767a
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;
28 import com.baomidou.mybatisplus.annotation.IdType;
29 import com.baomidou.mybatisplus.annotation.TableId;
30 import com.baomidou.mybatisplus.annotation.TableName;
31 import lombok.Data;
32
33 import java.util.Date;
34
35 /**
36  * blog文章主体
37  *
38  * @author inleft
39  * @date 2022-01-22 16:53:06
40  */
41 @Data
42 @TableName("blog_article")
43 public class BlogArticle{
44
45     /**
46      * 主键
47      */
48     @TableId(type = IdType.ASSIGN_ID)
49     private Long id;
50
51     /**
52      * 文章标题
53      */
54     @Excel(name = "文章标题")
55     private String title;
56
57     /**
58      * 文章文件id
59      */
60     @Excel(name = "文章文件id")
61     private Long articleFileId;
62
63     /**
64      * 文件类型 1:markdown 2:html
65      */
66     @Excel(name = "文件类型 1:markdown 2:html")
67     private Integer articleFileType;
68
69     /**
70      * 文章分类id 0:没有分类
71      */
72     @Excel(name = "文章分类id 0:没有分类")
73     private Long articleTypeId;
74
75     /**
76      * 文章引言
77      */
78     @Excel(name = "文章引言")
79     private String introduce;
80
81     /**
82      * 封面文件地址(id)
83      */
84     @Excel(name = "封面文件地址(id)")
85     private Long coverFileId;
86
87     /**
88      * 上次编辑时间
89      */
90     @Excel(name = "上次编辑时间", databaseFormat = "yyyy-MM-dd HH:mm:ss", format = "yyyy-MM-dd", width = 20)
91     private Date lastEditorDate;
92
93     /**
94      * 发布时间
95      */
96     @Excel(name = "发布时间", databaseFormat = "yyyy-MM-dd HH:mm:ss", format = "yyyy-MM-dd", width = 20)
97     private Date publishDate;
98
99     /**
100      * 是否置顶 0:否 1:是
101      */
102     @Excel(name = "是否置顶 0:否 1:是")
103     private Integer isTop;
104
105     /**
106      * 置顶值(越小越靠前)
107      */
108     @Excel(name = "置顶值(越小越靠前)")
109     private Integer topValue;
110
111     /**
112      * 公开状态 1:公开 2:私密 3:密码授权
113      */
114     @Excel(name = "公开状态 1:公开 2:私密 3:密码授权")
115     private Integer authStatus;
116
117     /**
118      * 授权密码(在密码授权状态时)
119      */
120     @Excel(name = "授权密码(在密码授权状态时)")
121     private String authPassword;
122
123     /**
124      * 编辑状态 0:草稿 1:发布
125      */
126     @Excel(name = "编辑状态 0:草稿 1:发布")
127     private Integer editorStatus;
128
129     /**
130      * 归档年份(以初次发布时间为准)
131      */
132     @Excel(name = "归档年份(以初次发布时间为准)")
133     private Integer separateYear;
134
135     /**
136      * 归档月份
137      */
138     @Excel(name = "归档月份")
139     private Integer separateMonth;
140
141     /**
142      * 归档日
143      */
144     @Excel(name = "归档日")
145     private Integer separateDay;
146
147     /**
148      * 是否启用 0:否 1:是
149      */
150     @Excel(name = "是否启用 0:否 1:是")
151     private Integer isEnable;
152
153     /**
154      * 更新时间
155      */
156     @Excel(name = "更新时间", databaseFormat = "yyyy-MM-dd HH:mm:ss", format = "yyyy-MM-dd", width = 20)
157     private Date updateDate;
158
159     /**
160      * 创建时间
161      */
162     @Excel(name = "创建时间", databaseFormat = "yyyy-MM-dd HH:mm:ss", format = "yyyy-MM-dd", width = 20)
163     private Date createDate;
164
165 }