Add top priority property in Comment entity

pull/137/head
johnniang 2019-03-22 14:14:08 +08:00
parent a2335bb9a2
commit dfec650f79
1 changed files with 6 additions and 0 deletions

View File

@ -89,6 +89,12 @@ public class Comment extends BaseEntity {
@Column(name = "post_id", columnDefinition = "int not null")
private Integer postId;
/**
*
*/
@Column(name = "top_priority", columnDefinition = "int default 0")
private Integer topPriority;
/**
*
*/