mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 07:50:25 +08:00
21 lines
494 B
Go
21 lines
494 B
Go
package entity
|
|
|
|
import (
|
|
"mayfly-go/pkg/model"
|
|
"time"
|
|
)
|
|
|
|
type MachineTermOp struct {
|
|
model.DeletedModel
|
|
|
|
MachineId uint64 `json:"machineId"`
|
|
Username string `json:"username"`
|
|
RecordFilePath string `json:"recordFilePath"` // 回放文件路径
|
|
ExecCmds string `json:"execCmds"` // 执行的命令
|
|
|
|
CreateTime *time.Time `json:"createTime"`
|
|
CreatorId uint64 `json:"creatorId"`
|
|
Creator string `json:"creator"`
|
|
EndTime *time.Time `json:"endTime"`
|
|
}
|