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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package com.yiboshi.science.param.query;
import com.yiboshi.science.base.PaginationVO;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.hibernate.validator.constraints.Length;
@Data
@EqualsAndHashCode(callSuper=true)
@ApiModel(description = "查询项目绩效指标表VO")
public class ComProjectKpitDetailQueryVO extends PaginationVO {
/** kpitId */
@ApiModelProperty(value = "kpitId", position = 8)
@Length(max=36, message = "kpitId不能大于36")
private String kpitId;
/** 绩效类型名称 */
@ApiModelProperty(value = "绩效类型名称", position = 1 )
@Length(max=200, message = "绩效类型名称不能大于200")
private String kpitName;
/** 项目Id */
@ApiModelProperty(value = "项目Id", position = 8)
@Length(max=36, message = "项目Id不能大于36")
private String objectId;
/** 一级指标名称 */
@ApiModelProperty(value = "一级指标名称", position = 1 )
@Length(max=40, message = "一级指标名称不能大于40")
private String oneLevelName;
/** 二级指标名称 */
@ApiModelProperty(value = "二级指标名称", position = 1 )
@Length(max=40, message = "二级指标名称不能大于40")
private String towLevelName;
/** 指标值 */
@ApiModelProperty(value = "指标值", position = 7)
private Integer targetValue;
/** 绩效标准 */
@ApiModelProperty(value = "绩效标准", position = 7)
private Integer performanceStandard;
/** 年度1指标 */
@ApiModelProperty(value = "年度1指标", position = 7)
private Integer yearValue1;
/** 年度2指标 */
@ApiModelProperty(value = "年度2指标", position = 7)
private Integer yearValue2;
/** 年度3指标 */
@ApiModelProperty(value = "年度3指标", position = 7)
private Integer yearValue3;
/** 一级指标显示 */
@ApiModelProperty(value = "一级指标显示", position = 7)
private Boolean oneDisplay;
/** 二级指标显示 */
@ApiModelProperty(value = "二级指标显示", position = 7)
private Boolean towDisplay;
/** 一级指标行合并数 */
@ApiModelProperty(value = "一级指标行合并数", position = 7)
private Integer oneRowSpan;
/** 二级指标行合并数 */
@ApiModelProperty(value = "二级指标行合并数", position = 7)
private Integer towRowSpan;
}