mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-15 09:47:09 +08:00
15 lines
338 B
Go
15 lines
338 B
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Black struct {
|
|
OwnerUserID string `bson:"owner_user_id"`
|
|
BlockUserID string `bson:"block_user_id"`
|
|
CreateTime time.Time `bson:"create_time"`
|
|
AddSource int32 `bson:"add_source"`
|
|
OperatorUserID string `bson:"operator_user_id"`
|
|
Ex string `bson:"ex"`
|
|
}
|