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
36
37
38
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
}