src/main/kotlin/cn/flightfeather/supervision/model/dataproduct/PPListProblemChange.kt
@@ -1,9 +1,9 @@
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 io.swagger.annotations.ApiModel
import io.swagger.annotations.ApiModelProperty
import java.util.*
/**
 * 初级数据产品
@@ -11,25 +11,52 @@
 * @date 2025/7/30
 * @author feiyu02
 */
@ApiModel(value = "初级数据产品-场景问题整改清单")
class PPListProblemChange {
    /**
     * 问题信息
     */
    var problem: Problemlist? = null
    /**
     * 场景信息
     */
    var scene: Scense? = null
    /**
     * 巡查信息
     */
    var subTask: Subtask? = null
    /**
     * 问题类型
     */
    var problemType: Problemtype? = null
    // 场景唯一编号
    @ApiModelProperty(value = "场景唯一编号")
    var index: Int? = null
    // 场景名称
    @ApiModelProperty(value = "场景名称")
    var sceneName: String? = null
    // 场景类型
    @ApiModelProperty(value = "场景类型")
    var sceneType: String? = null
    // 省份名称
    @ApiModelProperty(value = "省份名称")
    var provinceName: String? = null
    // 城市名称
    @ApiModelProperty(value = "城市名称")
    var cityName: String? = null
    // 区县名称
    @ApiModelProperty(value = "区县名称")
    var districtName: String? = null
    // 乡镇名称
    @ApiModelProperty(value = "乡镇名称")
    var townName: String? = null
    // 巡查时间
    @ApiModelProperty(value = "巡查时间")
    var inspectionTime: Date? = null
    // 问题类型
    @ApiModelProperty(value = "问题类型")
    var problemType: String? = null
    // 问题名称
    @ApiModelProperty(value = "问题名称")
    var problemName: String? = null
    // 问题区域
    @ApiModelProperty(value = "问题区域")
    var location: String? = null
    // 问题发生时间
    @ApiModelProperty(value = "问题发生时间")
    var problemTime: Date? = null
    // 问题是否整改
    @ApiModelProperty(value = "问题是否整改")
    var hasChanged: Boolean = false
    // 整改数
    @ApiModelProperty(value = "整改数")
    var changeSum: Int = 0
    // 整改时间
    @ApiModelProperty(value = "整改时间")
    var changedTime: Date? = null
}