mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
14 lines
199 B
Go
14 lines
199 B
Go
package application
|
|
|
|
import "io"
|
|
|
|
type DumpDbReq struct {
|
|
DbId uint64
|
|
DbName string
|
|
Tables []string
|
|
DumpDDL bool // 是否dump ddl
|
|
DumpData bool // 是否dump data
|
|
|
|
Writer io.Writer
|
|
}
|