mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-02 23:40:24 +08:00
14 lines
383 B
Go
14 lines
383 B
Go
package entity
|
|
|
|
import "mayfly-go/pkg/model"
|
|
|
|
type MachineScript struct {
|
|
model.Model
|
|
Name string `json:"name"`
|
|
MachineId uint64 `json:"machineId"` // 机器id
|
|
Type int `json:"type"`
|
|
Description string `json:"description"` // 脚本描述
|
|
Params string `json:"params"` // 参数列表json
|
|
Script string `json:"script"` // 脚本内容
|
|
}
|