实现博文功能

pull/219/head
lifei6671 2017-08-01 17:58:36 +08:00
parent 3a1daba62a
commit 763ea81bdf
1 changed files with 25 additions and 0 deletions

25
models/blogs.go 100644
View File

@ -0,0 +1,25 @@
package models
import "time"
//博文表
type Blog struct {
BlogId int
BlogTitle string
MemberId int
//文字摘要
BlogExcerpt string
//文章内容
BlogContent string
//文章当前的状态枚举enum(publish,draft,private,static,object)值publish为已 发表draft为草稿private为私人内容(不会被公开) static(不详)object(不详)。默认为publish。
BlogStatus string
//文章密码varchar(20)值。文章编辑才可为文章设定一个密码,凭这个密码才能对文章进行重新强加或修改。
Password string
//最后修改时间
Modified time.Time
//修改人id
ModifyAt int
//创建时间
Created time.Time
}