mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-04 08:20:25 +08:00
14 lines
235 B
Go
14 lines
235 B
Go
|
|
package entity
|
||
|
|
|
||
|
|
import "mayfly-go/base/model"
|
||
|
|
|
||
|
|
type MachineFile struct {
|
||
|
|
model.Model
|
||
|
|
Name string `json:"name"`
|
||
|
|
// 机器id
|
||
|
|
MachineId uint64 `json:"machineId"`
|
||
|
|
Type int `json:"type"`
|
||
|
|
// 路径
|
||
|
|
Path string `json:"path"`
|
||
|
|
}
|