🎨 移除多余模块
This commit is contained in:
@@ -1,21 +0,0 @@
|
||||
package response
|
||||
|
||||
import "time"
|
||||
|
||||
type SysAIWorkflowSessionListItem struct {
|
||||
ID uint `json:"ID"`
|
||||
CreatedAt time.Time `json:"CreatedAt"`
|
||||
UpdatedAt time.Time `json:"UpdatedAt"`
|
||||
Tab string `json:"tab"`
|
||||
Title string `json:"title"`
|
||||
Summary string `json:"summary"`
|
||||
ConversationID string `json:"conversationId"`
|
||||
CurrentNodeID string `json:"currentNodeId"`
|
||||
}
|
||||
|
||||
type AIWorkflowMarkdownDumpResult struct {
|
||||
FileName string `json:"fileName"`
|
||||
FilePath string `json:"filePath"`
|
||||
RelativePath string `json:"relativePath"`
|
||||
Directory string `json:"directory"`
|
||||
}
|
||||
@@ -1,27 +0,0 @@
|
||||
package response
|
||||
|
||||
import "github.com/flipped-aurora/gin-vue-admin/server/model/system"
|
||||
|
||||
type Db struct {
|
||||
Database string `json:"database" gorm:"column:database"`
|
||||
}
|
||||
|
||||
type Table struct {
|
||||
TableName string `json:"tableName" gorm:"column:table_name"`
|
||||
}
|
||||
|
||||
type Column struct {
|
||||
DataType string `json:"dataType" gorm:"column:data_type"`
|
||||
ColumnName string `json:"columnName" gorm:"column:column_name"`
|
||||
DataTypeLong string `json:"dataTypeLong" gorm:"column:data_type_long"`
|
||||
ColumnComment string `json:"columnComment" gorm:"column:column_comment"`
|
||||
PrimaryKey bool `json:"primaryKey" gorm:"column:primary_key"`
|
||||
}
|
||||
|
||||
type PluginInfo struct {
|
||||
PluginName string `json:"pluginName"`
|
||||
PluginType string `json:"pluginType"` // web, server, full
|
||||
Apis []system.SysApi `json:"apis"`
|
||||
Menus []system.SysBaseMenu `json:"menus"`
|
||||
Dictionaries []system.SysDictionary `json:"dictionaries"`
|
||||
}
|
||||
Reference in New Issue
Block a user