mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
14 lines
398 B
Go
14 lines
398 B
Go
package entity
|
|
|
|
import "mayfly-go/pkg/model"
|
|
|
|
type Mongo struct {
|
|
model.Model
|
|
|
|
Name string `orm:"column(name)" json:"name"`
|
|
Uri string `orm:"column(uri)" json:"uri"`
|
|
SshTunnelMachineId int `orm:"column(ssh_tunnel_machine_id)" json:"sshTunnelMachineId"` // ssh隧道机器id
|
|
TagId uint64 `json:"tagId"`
|
|
TagPath string `json:"tagPath"`
|
|
}
|