feiyu02
2025-10-30 9cb8d7e0f4ffca386b14a15f8a0aca4d1db23252
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
package cn.flightfeather.supervision.lightshare.vo.dataprod
 
import cn.flightfeather.supervision.domain.ds1.entity.Problemtype
import io.swagger.annotations.ApiModelProperty
 
/**
 * 问题重复情况
 * @date 2025/10/30
 * @author feiyu02
 */
class DPProblemRecurrence {
 
    @ApiModelProperty(value = "问题标签")
    var problemTag:String? = null
 
    @ApiModelProperty(value = "问题类型")
    var problemType: Problemtype? = null
 
    @ApiModelProperty(value = "出现次数")
    var count = 0
 
    @ApiModelProperty(value = "整改数")
    var changeCount = 0
 
    @ApiModelProperty(value = "整改率")
    var changePer: Double = 0.0
}