mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
15 lines
319 B
Go
15 lines
319 B
Go
package entity
|
|
|
|
import "mayfly-go/base/model"
|
|
|
|
type Mongo struct {
|
|
model.Model
|
|
|
|
Name string `orm:"column(name)" json:"name"`
|
|
Uri string `orm:"column(uri)" json:"uri"`
|
|
ProjectId uint64 `json:"projectId"`
|
|
Project string `json:"project"`
|
|
EnvId uint64 `json:"envId"`
|
|
Env string `json:"env"`
|
|
}
|