mirror of
https://gitee.com/samwaf/SamWaf.git
synced 2025-12-06 14:59:18 +08:00
9 lines
267 B
Go
9 lines
267 B
Go
package request
|
|
|
|
type WafSensitiveEditReq struct {
|
|
Id string `json:"id"`
|
|
Type int `json:"type" form:"type"` //敏感词类型
|
|
Content string `json:"content" form:"content" ` //内容
|
|
Remarks string `json:"remarks" form:"remarks" ` //备注
|
|
}
|