Files
SamWaf/model/waf_sys.go
2023-12-25 11:31:03 +08:00

12 lines
200 B
Go

package model
import (
"SamWaf/model/baseorm"
)
type WafSysLog struct {
baseorm.BaseOrm
OpType string `json:"op_type"` //操作类型
OpContent string `json:"op_content"` //操作内容
}