mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-04 00:10:25 +08:00
14 lines
189 B
Go
14 lines
189 B
Go
package models
|
|
|
|
import (
|
|
"mayfly-go/base/model"
|
|
)
|
|
|
|
type DbSql struct {
|
|
model.Model `orm:"-"`
|
|
|
|
DbId uint64 `json:"db_id"`
|
|
Type int `json:"type"` // 类型
|
|
Sql string `json:"sql"`
|
|
}
|