mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 16:00:25 +08:00
18 lines
267 B
Go
18 lines
267 B
Go
package models
|
|
|
|
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"`
|
|
}
|