thread-master/backend/internal/model/publish_draft/domain/entity/draft.go

16 lines
436 B
Go
Raw Permalink Normal View History

package entity
const CollectionName = "publish_text_drafts"
type Draft struct {
ID string `bson:"_id"`
TenantID string `bson:"tenant_id"`
OwnerUID string `bson:"owner_uid"`
AccountID string `bson:"account_id"`
Title string `bson:"title,omitempty"`
Text string `bson:"text"`
Tags []string `bson:"tags,omitempty"`
CreateAt int64 `bson:"create_at"`
UpdateAt int64 `bson:"update_at"`
}