mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-17 16:56:38 +08:00
13 lines
270 B
Go
13 lines
270 B
Go
package vo
|
|
|
|
type ChatItem struct {
|
|
BaseVo
|
|
UserId uint `json:"user_id"`
|
|
Icon string `json:"icon"`
|
|
RoleId uint `json:"role_id"`
|
|
ChatId string `json:"chat_id"`
|
|
ModelId uint `json:"model_id"`
|
|
Model string `json:"model"`
|
|
Title string `json:"title"`
|
|
}
|