Documentation ¶
Index ¶
Constants ¶
View Source
const (
ROBOT_COLLECTION = "robot"
)
View Source
const (
USER_COLLECTION = "user"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Robot ¶
type Robot struct { gmeta.Meta `collection:"robot" bson:"-"` UserId int `bson:"user_id,omitempty"` // 绑定的用户ID IsTalk int `bson:"is_talk,omitempty"` // 是否可发送消息[0:否;1:是;] Type int `bson:"type,omitempty"` // 机器人类型 Status int `bson:"status,omitempty"` // 状态[-1:已删除;0:正常;1:已禁用;] Corp string `bson:"corp,omitempty"` // 公司 Model string `bson:"model,omitempty"` // 模型 ModelType string `bson:"model_type,omitempty"` // 模型类型, 文生文: text, 画图: image Role string `bson:"role,omitempty"` // 角色 Prompt string `bson:"prompt,omitempty"` // 提示 Proxy string `bson:"proxy,omitempty"` // 代理 Key string `bson:"key,omitempty"` // 密钥 CreatedAt int64 `bson:"created_at,omitempty"` // 创建时间 UpdatedAt int64 `bson:"updated_at,omitempty"` // 更新时间 }
type User ¶
type User struct { gmeta.Meta `collection:"user" bson:"-"` UserId int `bson:"user_id,omitempty"` // 用户ID Nickname string `bson:"nickname,omitempty"` // 昵称 Avatar string `bson:"avatar,omitempty"` // 头像 Gender int `bson:"gender"` // 性别[0:保密;1:男;2:女] Mobile string `bson:"mobile,omitempty"` // 手机号 Email string `bson:"email,omitempty"` // 邮箱 Birthday string `bson:"birthday"` // 生日 Motto string `bson:"motto"` // 座右铭 Status int `bson:"status,omitempty"` // 状态[1:正常;2:禁用;-1:删除] CreatedAt int64 `bson:"created_at,omitempty"` // 注册时间 UpdatedAt int64 `bson:"updated_at,omitempty"` // 更新时间 }
Click to show internal directories.
Click to hide internal directories.