123456789101112131415161718192021 |
- package model
- import "time"
- type GameShield struct {
- Id int `gorm:"primarykey"`
- AppName string
- GatewayGroupId int
- Backend string
- RuleId int
- Key string
- AddTime time.Time
- Uid int
- HostId string
- AppIp string
- Checked int
- }
- func (m *GameShield) TableName() string {
- return "shd_game_shield"
- }
|