mirror of
https://gitee.com/samwaf/SamWaf.git
synced 2025-12-06 14:59:18 +08:00
12 lines
376 B
Go
12 lines
376 B
Go
package model
|
|
|
|
import "SamWaf/model/baseorm"
|
|
|
|
type Sensitive struct {
|
|
baseorm.BaseOrm
|
|
CheckDirection string `json:"check_direction"` //敏感词检测方向 in ,out ,all
|
|
Action string `json:"action"` //敏感词检测后动作 deny,replace
|
|
Content string `json:"content"` //内容
|
|
Remarks string `json:"remarks"` //备注
|
|
}
|