mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-04 00:10:25 +08:00
16 lines
305 B
Go
16 lines
305 B
Go
|
|
package entity
|
||
|
|
|
||
|
|
import "mayfly-go/base/model"
|
||
|
|
|
||
|
|
type MachineScript struct {
|
||
|
|
model.Model
|
||
|
|
Name string `json:"name"`
|
||
|
|
// 机器id
|
||
|
|
MachineId uint64 `json:"machineId"`
|
||
|
|
Type int `json:"type"`
|
||
|
|
// 脚本内容
|
||
|
|
Description string `json:"description"`
|
||
|
|
// 脚本内容
|
||
|
|
Script string `json:"script"`
|
||
|
|
}
|