2021-01-08 15:37:32 +08:00
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"mayfly-go/base/model"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type DbSql struct {
|
|
|
|
|
model.Model `orm:"-"`
|
|
|
|
|
|
2021-04-16 15:10:07 +08:00
|
|
|
DbId uint64 `json:"db_id"`
|
|
|
|
|
Type int `json:"type"` // 类型
|
|
|
|
|
Sql string `json:"sql"`
|
2021-01-08 15:37:32 +08:00
|
|
|
}
|