20 lines
676 B
Go
20 lines
676 B
Go
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
|
|
package model
|
|
|
|
const TableNameAiBotGroupConfig = "ai_bot_group_config"
|
|
|
|
// AiBotGroupConfig mapped from table <ai_bot_group_config>
|
|
type AiBotGroupConfig struct {
|
|
ConfigID int32 `gorm:"column:config_id;primaryKey;autoIncrement:true" json:"config_id"`
|
|
ToolList string `gorm:"column:tool_list;not null" json:"tool_list"`
|
|
ProductName string `gorm:"column:product_name;not null" json:"product_name"`
|
|
}
|
|
|
|
// TableName AiBotGroupConfig's table name
|
|
func (*AiBotGroupConfig) TableName() string {
|
|
return TableNameAiBotGroupConfig
|
|
}
|