Files
huangguo_server/models/v/imgroupmembermod/app.go
T
rootandClaude Opus 5 8679200f41 Initial commit
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-15 13:57:10 +08:00

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"` // 创建时间
}