You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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
}