mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-03-29 21:35:40 +08:00
!88 feat: dbms表支持右键菜单:删除表、编辑表、新建表、复制表
* feat: 支持复制表 * feat: dbms表支持右键菜单:删除表、编辑表、新建表
This commit is contained in:
@@ -23,3 +23,11 @@ type DbSqlExecForm struct {
|
||||
Sql string `binding:"required" json:"sql"` // 执行sql
|
||||
Remark string `json:"remark"` // 执行备注
|
||||
}
|
||||
|
||||
// 数据库复制表
|
||||
type DbCopyTableForm struct {
|
||||
Id uint64 `binding:"required" json:"id"`
|
||||
Db string `binding:"required" json:"db" `
|
||||
TableName string `binding:"required" json:"tableName"`
|
||||
CopyData bool `binding:"required" json:"copyData"` // 是否复制数据
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user