feiyu02
2024-11-21 90615ce702dde7f1d8fed373d8f3a96796ef1f2d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
}