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
|
}
|