device_dto.go 1008 字节
package dto

import (
	"gitlab.fjmaimaimai.com/allied-creation/allied-creation-manufacture/pkg/domain"
)

type DeviceDto struct {
	// 设备Id
	DeviceId int `json:"deviceId,omitempty"`
	// 设备编号
	DeviceCode string `json:"deviceCode,omitempty"`
	// 设备名称
	DeviceName string `json:"deviceName,omitempty"`
	// 设备型号
	DeviceModel string `json:"deviceModel,omitempty"`
	// 设备类型
	DeviceType string `json:"deviceType,omitempty"`
	// 品牌
	Brand string `json:"brand,omitempty"`
	// 设备状态 1:正常 2:封存 3:报废
	DeviceStatus int `json:"deviceStatus,omitempty"`
	// 风险等级 1:高 2:中 3:低
	RiskLevel int `json:"riskLevel,omitempty"`
	// 所属位置
	*domain.WorkStation
}

func (d *DeviceDto) LoadDto(m *domain.Device) *DeviceDto {
	d.DeviceId = m.DeviceId
	d.DeviceCode = m.DeviceCode
	d.DeviceName = m.DeviceName
	d.DeviceType = m.DeviceType
	d.Brand = m.Brand
	d.DeviceStatus = m.DeviceStatus
	d.RiskLevel = m.RiskLevel
	d.WorkStation = m.WorkStation
	return d
}