mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
15 lines
514 B
Go
15 lines
514 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"`
|
|
EnableSshTunnel int8 `orm:"column(enable_ssh_tunnel)" json:"enableSshTunnel"` // 是否启用ssh隧道
|
|
SshTunnelMachineId uint64 `orm:"column(ssh_tunnel_machine_id)" json:"sshTunnelMachineId"` // ssh隧道机器id
|
|
TagId uint64 `json:"tagId"`
|
|
TagPath string `json:"tagPath"`
|
|
}
|