article_draft.go 489 字节
package domain

import "time"

// 填写文章时保存的草稿

type ArticleDraft struct {
	Id        int64
	CreatedAt time.Time
	UpdatedAt time.Time
	DeletedAt *time.Time
	Template  int      // 填写内容时用的样板 1、演绎式 2、归纳式
	Content   []string // 文章内容
	AuthorId  int64    // 发布人
	Title     string   // 文章标题
	Images    []Image  // 图片
	WhoRead   []int64  // 谁可以看
	WhoReview []int64  // 评论人
	Location  Location // 坐标
}