1234567891011121314151617181920 |
- package model
- import "time"
- type GlobalLimit struct {
- Id int `gorm:"primary"`
- HostId int
- RuleId int
- Uid int
- CdnUid int
- GatewayGroupId int
- Comment string
- ExpiredAt int64
- createdAt time.Time
- updatedAt time.Time
- }
- func (m *GlobalLimit) TableName() string {
- return "shd_waf"
- }
|