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

15 lines
435 B
Go
Raw Normal View History

2026-06-30 07:09:44 +00:00
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"`
}