mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-12-29 19:06:35 +08:00
18 lines
267 B
Go
18 lines
267 B
Go
|
|
package entity
|
||
|
|
|
||
|
|
import (
|
||
|
|
"mayfly-go/base/model"
|
||
|
|
)
|
||
|
|
|
||
|
|
type Machine struct {
|
||
|
|
model.Model
|
||
|
|
Name string `json:"name"`
|
||
|
|
// IP地址
|
||
|
|
Ip string `json:"ip"`
|
||
|
|
// 用户名
|
||
|
|
Username string `json:"username"`
|
||
|
|
Password string `json:"-"`
|
||
|
|
// 端口号
|
||
|
|
Port int `json:"port"`
|
||
|
|
}
|