feiyu02
2025-07-31 6688232eaa889eeb6c58d0d804b587699db55ec2
src/main/kotlin/cn/flightfeather/supervision/model/dataproduct/PPListProblemChange.kt
@@ -1,9 +1,7 @@
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
import java.util.*
/**
 * 初级数据产品
@@ -13,23 +11,28 @@
 */
class PPListProblemChange {
    /**
     * 问题信息
     */
    var problem: Problemlist? = null
    /**
     * 场景信息
     */
    var scene: Scense? = null
    /**
     * 巡查信息
     */
    var subTask: Subtask? = null
    /**
     * 问题类型
     */
    var problemType: Problemtype? = null
    // 场景唯一编号
    var index: Int? = null
    // 场景名称
    var sceneName: String? = null
    // 场景类型
    var sceneType: String? = null
    var provinceName: String? = null
    var cityName: String? = null
    var districtName: String? = null
    var townName: String? = null
    // 巡查时间
    var inspectionTime: Date? = null
    // 问题类型
    var problemType: String? = null
    // 问题名称
    var problemName: String? = null
    // 问题区域
    var location: String? = null
    var problemTime: Date? = null
    // 问题是否整改
    var hasChanged: Boolean = false
    // 整改数
    var changeSum: Int = 0
    var changedTime: Date? = null
}