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