package cn.flightfeather.supervision.lightshare.vo
|
|
import cn.flightfeather.supervision.domain.ds1.entity.ProductionDeviceInfo
|
|
/**
|
*
|
* @date 2024/8/13
|
* @author feiyu02
|
*/
|
class ProductionDeviceInfoVo: ProductionDeviceInfo() {
|
// 场景类型
|
var sceneType: String? = null
|
// 设备类型
|
var type: String? = null
|
// 设备子类型
|
var subType: String? = null
|
// 运行状态
|
var runningStatus: String? = null
|
// 所有权
|
var ownership: String? = null
|
}
|