ReportDetailModel.java
1.66 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package com.xkl.model;
import lombok.Data;
/**
* Created by win7 on 2016/12/12.
*/
@Data
public class ReportDetailModel {
/**
* XklAmpReportDetailEntity
*/
private int itemId;//对应itemId
private double itemValue;
private int status;
/**
* XklAmpReportMetaItemsEntity
*/
private String title;
private String normalNv;
private String normal;
/**
* XklAmpReportHealthScoreEntity
*/
private int type;
private double typeHealthScore;
public int getItemId() {
return itemId;
}
public void setItemId(int itemId) {
this.itemId = itemId;
}
public double getItemValue() {
return itemValue;
}
public void setItemValue(double itemValue) {
this.itemValue = itemValue;
}
public int getStatus() {
return status;
}
public void setStatus(int status) {
this.status = status;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getNormalNv() {
return normalNv;
}
public void setNormalNv(String normalNv) {
this.normalNv = normalNv;
}
public String getNormal() {
return normal;
}
public void setNormal(String normal) {
this.normal = normal;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public double getTypeHealthScore() {
return typeHealthScore;
}
public void setTypeHealthScore(double typeHealthScore) {
this.typeHealthScore = typeHealthScore;
}
}