Files
jh-zz/model/gateway.go
2025-08-09 14:42:19 +08:00

20 lines
621 B
Go

package model
type Gateway struct {
Id int `gorm:"column:id;primaryKey"`
ConfigVersion int `gorm:"column:setid"`
ChangeCount int `gorm:"column:change_count"`
LimitCount int `gorm:"column:limit_count"`
Token string `gorm:"column:token"`
Macaddr string `gorm:"column:macaddr"`
TokenTime string `gorm:"column:token_time"`
PrivateIp string `gorm:"column:inner_ip"`
ProxyIp string `gorm:"column:l2ip"`
CreateTime string `gorm:"column:createtime"`
UpdateTime string `gorm:"column:updatetime"`
}
func (e *Gateway) TableName() string {
return "token"
}