device_running_data.go 653 字节
package domain

// 设备运行数据
type DeviceRunningData struct {
	// 启动状态:1:启动,0:停止
	StartupState int `json:"startupState"`
	// 通讯状态:1:通讯正常,0:设备未上电或与采集端通讯故障
	ComStatus int `json:"comStatus"`
	// 匹配数目
	Count int `json:"count"`
	// 炸机前段温度:炸机前段当前温度 YZJ1 油炸机
	FrontTemp float64 `json:"frontTemp"`
	// 炸机前段温度:炸机前段当前温度 YZJ2 油炸机
	Temp1 float64 `json:"temp1"`
	// 当前产品种类(产品编号)
	ProductType string `json:"productType"`
	// 设备编号
	DeviceCode string `json:"deviceCode"`
}