mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
17 lines
288 B
Go
17 lines
288 B
Go
package entity
|
|
|
|
import (
|
|
"mayfly-go/pkg/model"
|
|
)
|
|
|
|
type Db struct {
|
|
model.Model
|
|
|
|
Name string `orm:"column(name)" json:"name"`
|
|
Database string `orm:"column(database)" json:"database"`
|
|
Remark string `json:"remark"`
|
|
TagId uint64
|
|
TagPath string
|
|
InstanceId uint64
|
|
}
|