16 lines
423 B
Go
Executable File
16 lines
423 B
Go
Executable File
package imgroupmembermod
|
|
|
|
import (
|
|
"time"
|
|
|
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
|
)
|
|
|
|
// ImGroupMemberInfo 移动端返回内容
|
|
type ImGroupMemberInfo struct {
|
|
ID primitive.ObjectID `json:"id"` // 文档id
|
|
Uid uint64 `json:"uid"` // uid
|
|
Price int64 `json:"price"` // 进群花费价格
|
|
CreatedAt time.Time `json:"createdAt"` // 创建时间
|
|
}
|