mirror of
https://gitee.com/samwaf/SamWaf.git
synced 2025-12-06 14:59:18 +08:00
17 lines
421 B
Go
17 lines
421 B
Go
package model
|
|
|
|
import "SamWaf/model/baseorm"
|
|
|
|
/*
|
|
*
|
|
一键修改备份
|
|
*/
|
|
type OneKeyMod struct {
|
|
baseorm.BaseOrm
|
|
OpSystem string `json:"op_system"` //系统类型
|
|
FilePath string `json:"file_path"` //文件路径
|
|
BeforeContent string `json:"before_content"` //修改前内容
|
|
AfterContent string `json:"after_content"` //修改后内容
|
|
Remarks string `json:"remarks"` //备注
|
|
}
|