mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
17 lines
355 B
Go
17 lines
355 B
Go
package entity
|
|
|
|
import (
|
|
"mayfly-go/pkg/model"
|
|
)
|
|
|
|
type Db struct {
|
|
model.Model
|
|
|
|
Code string `orm:"column(code)" json:"code"`
|
|
Name string `orm:"column(name)" json:"name"`
|
|
Database string `orm:"column(database)" json:"database"`
|
|
Remark string `json:"remark"`
|
|
InstanceId uint64
|
|
AuthCertName string `json:"authCertName"`
|
|
}
|