建立仓库
This commit is contained in:
19
model/gateway.go
Normal file
19
model/gateway.go
Normal file
@@ -0,0 +1,19 @@
|
||||
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"
|
||||
}
|
||||
Reference in New Issue
Block a user