mirror of
https://gitee.com/samwaf/SamWaf.git
synced 2025-12-06 14:59:18 +08:00
27 lines
1.3 KiB
Go
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"` //备注
|
|
}
|