feiyu02
2025-07-30 f75ff7a0fc566dc18b60987b3fa2e65cae4665da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package cn.flightfeather.supervision.model.dataproduct
 
import cn.flightfeather.supervision.domain.ds1.entity.Problemlist
import cn.flightfeather.supervision.domain.ds1.entity.Problemtype
import cn.flightfeather.supervision.domain.ds1.entity.Scense
import cn.flightfeather.supervision.domain.ds1.entity.Subtask
 
/**
 * 初级数据产品
 * 场景问题整改清单
 * @date 2025/7/30
 * @author feiyu02
 */
class PPListProblemChange {
 
    /**
     * 问题信息
     */
    var problem: Problemlist? = null
 
    /**
     * 场景信息
     */
    var scene: Scense? = null
 
    /**
     * 巡查信息
     */
    var subTask: Subtask? = null
 
    /**
     * 问题类型
     */
    var problemType: Problemtype? = null
}