liusheng
2025-04-25 07b526e08ae75441bb7927fc9e2dd7087533d51a
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
39
40
41
42
package com.smartor.domain;
 
import com.ruoyi.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 指标统计
 *
 * @author smartor
 * @date 2023-03-24
 */
@Data
@ApiModel(value = "ServiceSubtaskDetailTarget", description = "指标统计")
public class ServiceSubtaskDetailTarget extends BaseEntity {
    private static final long serialVersionUID = 1L;
 
 
    @ApiModelProperty(value = "指标ID")
    private Long targetid;
 
    @ApiModelProperty(value = "任务ID")
    private Long taskid;
 
    @ApiModelProperty(value = "指标名称")
    private String targetname;
 
    @ApiModelProperty(value = "单项名称")
    private String matchedtext;
 
    @ApiModelProperty(value = "项出现次数 ")
    private Long count;
 
    @ApiModelProperty(value = "占比")
    private String percentage;
 
    @ApiModelProperty(value = "指标出现次数")
    private String targetShowCount;
 
 
}