E5BotForSQLite/core/client.go
2021-03-12 12:54:32 +08:00

13 lines
402 B
Go

package core
type Client struct {
TgId int64 `gorm:"column:tg_id"`
RefreshToken string `gorm:"column:refresh_token"`
MsId string `gorm:"column:ms_id"`
Uptime int64 `gorm:"column:uptime"`
Alias string `gorm:"column:alias"`
ClientId string `gorm:"column:client_id"`
ClientSecret string `gorm:"column:client_secret"`
Other string `gorm:"column:other"`
}