Files
SamWaf/model/onekeymod.go
samwaf 80a6d665f2 feat:add one key modify restore
thanks @SONGjiemo

#511
2025-11-04 15:20:21 +08:00

18 lines
482 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"` //修改后内容
IsRestore int `json:"is_restore"` //是否还原
Remarks string `json:"remarks"` //备注
}