建立仓库

This commit is contained in:
2025-08-05 10:51:35 +08:00
commit 4bbc05fe1f
36 changed files with 1946 additions and 0 deletions

19
model/gateway.go Normal file
View 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"
}