You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
643 B

4 months ago
package entity
type KeepAlive struct {
//Id int64 `json:"_id" description:"序号"`
//Uid int64 `json:"uid" description:"uid"`
Num int64 `json:"num" description:"数量"`
//CDate interface{} `json:"c_date" description:"登录时间"`
//EDate interface{} `json:"e_date" description:"登出时间"`
//CT string `json:"ct" description:"创建时间"`
CD string `json:"cd" description:"登录时间"`
//Channel string `json:"channel" description:"渠道"`
}
type OnlineData struct {
Num int64 `json:"num" description:"数量"`
Channel string `json:"channel" description:"渠道"`
}