mirror of
https://gitee.com/samwaf/SamWaf.git
synced 2025-12-06 06:58:54 +08:00
15 lines
346 B
Go
15 lines
346 B
Go
package model
|
|
|
|
import (
|
|
"SamWaf/model/baseorm"
|
|
)
|
|
|
|
type AntiCC struct {
|
|
baseorm.BaseOrm
|
|
HostCode string `json:"host_code"` //网站唯一码(主要键)
|
|
Rate int `json:"rate"` //速率
|
|
Limit int `json:"limit"` //限制
|
|
Url string `json:"url"` //保护的url
|
|
Remarks string `json:"remarks"` //备注
|
|
}
|