feiyu02
2025-09-30 a3cc1d220f8a1de11874bebceba0130d32157ff1
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
}