XklAmpReportMetaItemsEntity.java
1.09 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
package com.xkl.domain;
import lombok.Data;
import javax.persistence.*;
/**
* Created by win7 on 2016/11/21.
* 体检结果的解释
*/
@Data
@Entity
@Table(name = "xkl_amp_report_meta_items", schema = "hanhe_test", catalog = "")
public class XklAmpReportMetaItemsEntity {
@Id
@Column(name = "id")
private int id;
@Basic
@Column(name = "item_id")
private int itemId;
@Basic
@Column(name = "type")
private int type;
@Basic
@Column(name = "title")
private String title;
@Basic
@Column(name = "standard_low_male")
private double standardLowMale;
@Basic
@Column(name = "standard_high_male")
private double standardHighMale;
@Basic
@Column(name = "standard_low_female")
private double standardLowFemale;
@Basic
@Column(name = "standard_high_female")
private double standardHighFemale;
@Basic
@Column(name = "explain_low")
private String explainLow;
@Basic
@Column(name = "explain_high")
private String explainHigh;
@Basic
@Column(name = "explain_normal")
private String explainNormal;
}