mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-11-12 12:13:51 +08:00
发布v2.18.6版本,更新内容请查看:https://github.com/bufanyun/hotgo/blob/v2.0/docs/guide-zh-CN/start-update-log.md
This commit is contained in:
@@ -13,21 +13,21 @@ import (
|
||||
// SysServeLicense is the golang structure of table hg_sys_serve_license for DAO operations like Where/Data.
|
||||
type SysServeLicense struct {
|
||||
g.Meta `orm:"table:hg_sys_serve_license, do:true"`
|
||||
Id interface{} // 许可ID
|
||||
Group interface{} // 分组
|
||||
Name interface{} // 许可名称
|
||||
Appid interface{} // 应用ID
|
||||
SecretKey interface{} // 应用秘钥
|
||||
RemoteAddr interface{} // 最后连接地址
|
||||
OnlineLimit interface{} // 在线限制
|
||||
LoginTimes interface{} // 登录次数
|
||||
Id any // 许可ID
|
||||
Group any // 分组
|
||||
Name any // 许可名称
|
||||
Appid any // 应用ID
|
||||
SecretKey any // 应用秘钥
|
||||
RemoteAddr any // 最后连接地址
|
||||
OnlineLimit any // 在线限制
|
||||
LoginTimes any // 登录次数
|
||||
LastLoginAt *gtime.Time // 最后登录时间
|
||||
LastActiveAt *gtime.Time // 最后心跳
|
||||
Routes *gjson.Json // 路由表,空使用默认分组路由
|
||||
AllowedIps interface{} // IP白名单
|
||||
AllowedIps any // IP白名单
|
||||
EndAt *gtime.Time // 授权有效期
|
||||
Remark interface{} // 备注
|
||||
Status interface{} // 状态
|
||||
Remark any // 备注
|
||||
Status any // 状态
|
||||
CreatedAt *gtime.Time // 创建时间
|
||||
UpdatedAt *gtime.Time // 修改时间
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user