123456789101112131415161718192021 |
- package model
- import "time"
- type GlobalLimit struct {
- Id int `gorm:"primary"`
- HostId int
- RuleId int
- TcpLimitRuleId int
- UdpLimitRuleId int
- WebLimitRuleId int
- GatewayGroupId int
- GlobalLimitName string
- Comment string
- createdAt time.Time
- updatedAt time.Time
- }
- func (m *GlobalLimit) TableName() string {
- return "shd_waf"
- }
|