inleft
2022-08-25 d807fd2490a86bc99bb5abbe9566a63af63a6131
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
42b7d0 127     @Excel(name = "是否允许评论 0:否 1:是")
I 128     private Integer isAllowedComment;
129
130
9bcb19 131     /**
I 132      * 归档年份(以初次发布时间为准)
133      */
134     @Excel(name = "归档年份(以初次发布时间为准)")
135     private Integer separateYear;
136
137     /**
138      * 归档月份
139      */
140     @Excel(name = "归档月份")
141     private Integer separateMonth;
142
143     /**
144      * 归档日
145      */
146     @Excel(name = "归档日")
147     private Integer separateDay;
148
149     /**
150      * 是否启用 0:否 1:是
151      */
152     @Excel(name = "是否启用 0:否 1:是")
153     private Integer isEnable;
154
155     /**
156      * 更新时间
157      */
158     @Excel(name = "更新时间", databaseFormat = "yyyy-MM-dd HH:mm:ss", format = "yyyy-MM-dd", width = 20)
4d51af 159     @TableField(fill = FieldFill.INSERT_UPDATE)
9bcb19 160     private Date updateDate;
I 161
162     /**
163      * 创建时间
164      */
165     @Excel(name = "创建时间", databaseFormat = "yyyy-MM-dd HH:mm:ss", format = "yyyy-MM-dd", width = 20)
4d51af 166     @TableField(fill = FieldFill.INSERT)
9bcb19 167     private Date createDate;
I 168
d807fd 169
I 170     private String videoIds;
171
172     private String pictureIds;
173
174     @TableField(value = "jump_url")
175     private String jumpURL;
176
177
9bcb19 178 }