23 lines
394 B
Go
23 lines
394 B
Go
package system
|
|
|
|
type ChatGpt struct {
|
|
DBName string `json:"dbname,omitempty"`
|
|
Chat string `json:"chat,omitempty"`
|
|
ChatID string `json:"chatID,omitempty"`
|
|
}
|
|
|
|
type SysChatGptOption struct {
|
|
SK string `json:"sk"`
|
|
}
|
|
|
|
type ChatField struct {
|
|
TABLE_NAME string
|
|
COLUMN_NAME string
|
|
COLUMN_COMMENT string
|
|
}
|
|
|
|
type ChatFieldNoTable struct {
|
|
COLUMN_NAME string
|
|
COLUMN_COMMENT string
|
|
}
|