mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-09-19 09:46:40 +08:00
12 lines
298 B
Go
12 lines
298 B
Go
package servmsgin
|
|
|
|
import "github.com/gogf/gf/v2/os/gtime"
|
|
|
|
// AuthSummaryModel 授权信息
|
|
type AuthSummaryModel struct {
|
|
EndAt *gtime.Time `json:"end_at" description:"授权过期时间"`
|
|
Online int `json:"online" description:"在线人数"`
|
|
// 请填充你的授权数据
|
|
// ...
|
|
}
|