Files
mayfly-go/server/internal/devops/domain/entity/machine_file.go

14 lines
234 B
Go
Raw Normal View History

package entity
import "mayfly-go/pkg/model"
type MachineFile struct {
model.Model
Name string `json:"name"`
// 机器id
MachineId uint64 `json:"machineId"`
Type int `json:"type"`
// 路径
Path string `json:"path"`
}