mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
16 lines
239 B
Go
16 lines
239 B
Go
package entity
|
|
|
|
import (
|
|
"mayfly-go/pkg/model"
|
|
)
|
|
|
|
type DbSql struct {
|
|
model.Model `orm:"-"`
|
|
|
|
DbId uint64 `json:"dbId"`
|
|
Db string `json:"db"`
|
|
Type int `json:"type"` // 类型
|
|
Sql string `json:"sql"`
|
|
Name string `json:"name"`
|
|
}
|