Files
SamWaf/model/request/waf_sensitive_edit_req.go
2024-09-10 11:28:51 +08:00

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" ` //备注
}