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