拓展类型 自定义工具类型

This commit is contained in:
2024-10-10 18:22:50 +08:00
parent 3b69ba93ad
commit 1a0a9466d8
14 changed files with 374 additions and 31 deletions
+9
View File
@@ -0,0 +1,9 @@
package models
type ExecFiles struct {
BaseCard
// 文件名
Cmd string `json:"common"` // 执行命令
Pwd string `json:"pwd"` // 执行路径
Files []string `json:"files"` // 原始文件
}