package cn.flightfeather.supervision.lightshare.vo.dataprod.middle
|
|
import cn.flightfeather.supervision.lightshare.vo.ProblemListVo
|
import io.swagger.annotations.ApiModel
|
import io.swagger.annotations.ApiModelProperty
|
|
/**
|
* 典型问题场景清单
|
* @date 2025/10/16
|
* @author feiyu02
|
*/
|
@ApiModel(value = "典型问题场景清单")
|
class DPTypicalProblemScene {
|
|
@ApiModelProperty(value = "场景ID")
|
var sceneId: String? = null
|
|
@ApiModelProperty(value = "场景名称")
|
var sceneName:String? = null
|
|
@ApiModelProperty(value = "乡镇编码")
|
var townCode: String? = null
|
|
@ApiModelProperty(value = "乡镇名称")
|
var townName: String? = null
|
|
@ApiModelProperty(value = "问题数量")
|
var problemCount: Int = 0
|
|
@ApiModelProperty(value = "整改数量")
|
var changeCount: Int = 0
|
|
@ApiModelProperty(value = "整改率")
|
var changeRatio: Double = 0.0
|
|
@ApiModelProperty(value = "典型问题")
|
var typicalProblems: List<ProblemListVo>? = null
|
}
|