Files
mayfly-go/server/devops/domain/entity/db_sql.go

15 lines
215 B
Go
Raw Normal View History

package entity
import (
"mayfly-go/base/model"
)
type DbSql struct {
model.Model `orm:"-"`
DbId uint64 `json:"dbId"`
Type int `json:"type"` // 类型
Sql string `json:"sql"`
Name string `json:"name"`
}