article_backup.go 575 字节
package domain

import "time"

// 编辑文章后保存的历史记录
type ArticleBackup struct {
	Id        int64
	UpdatedAt time.Time        `json:"updatedAt"` // 更新时间
	DeletedAt *time.Time       `json:"deletedAt"` //
	CreatedAt time.Time        `json:"createdAt"` //
	Operator  UserSimple       `json:"operator"`  // 操作人
	Title     string           `json:"title"`     // 标题
	Section   []ArticleSection `json:"section"`   // 分段内容
	Images    []Image          `json:"images"`    // 图片
	Action    string           `json:"action"`    // 操作
}