16 lines
436 B
Go
16 lines
436 B
Go
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"`
|
|
}
|