device_ext.go 303 字节
package domain

// DeviceExt 设备扩展
type DeviceExt struct {
	// 生产单个产品的时间(单位:秒)
	UnitProductionSecTime int `json:"unitProductionSecTime"`
	// 是否是车间设备,如果这个设备有上报过数据,标记 1  默认0
	IsProductDevice int `json:"isProductDevice"`
}