Files
SamWaf/model/center.go
2024-07-07 00:23:05 +08:00

27 lines
1.3 KiB
Go

package model
import (
"SamWaf/customtype"
"SamWaf/model/baseorm"
)
/*
*
管控中心保存
*/
type Center struct {
baseorm.BaseOrm
ClientServerName string `json:"client_server_name"` // 客户端-自定义名称
ClientUserCode string `json:"client_user_code"` // 客户端-用户码
ClientTenantId string `json:"client_tenant_id"` // 客户端-租户ID
ClientToken string `json:"client_token"` // 客户端-访问密钥
ClientSsl string `json:"client_ssl"` // 客户端-是否https
ClientIP string `json:"client_ip"` //客户端 ip
ClientPort string `json:"client_port"` //客户端 port
ClientNewVersion string `json:"client_new_version"` //客户端 版本号
ClientNewVersionDesc string `json:"client_new_version_desc"` //客户端 版本描述
ClientSystemType string `json:"client_system_type"` //操作系统类型
LastVisitTime customtype.JsonTime `json:"last_visit_time"` //上次访问时间
Remarks string `json:"remarks"` //备注
}