mirror of
https://gitee.com/samwaf/SamWaf.git
synced 2025-12-06 06:58:54 +08:00
12 lines
200 B
Go
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"` //操作内容
|
|
}
|