mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-18 17:26:38 +08:00
12 lines
246 B
Go
12 lines
246 B
Go
package vo
|
|
|
|
type ChatModel struct {
|
|
BaseVo
|
|
Platform string `json:"platform"`
|
|
Name string `json:"name"`
|
|
Value string `json:"value"`
|
|
Enabled bool `json:"enabled"`
|
|
SortNum int `json:"sort_num"`
|
|
Weight int `json:"weight"`
|
|
}
|