Showing
2 changed files
with
372 additions
and
1 deletions
src/main/java/com/xkl/domain/AMPReport.java
0 → 100644
| 1 | +package com.xkl.domain; | ||
| 2 | + | ||
| 3 | +import lombok.Data; | ||
| 4 | + | ||
| 5 | +import javax.persistence.Column; | ||
| 6 | +import javax.persistence.Entity; | ||
| 7 | +import javax.persistence.Id; | ||
| 8 | +import javax.persistence.Table; | ||
| 9 | +import java.sql.Timestamp; | ||
| 10 | + | ||
| 11 | +/** | ||
| 12 | + * 用户数据的domain类 | ||
| 13 | + */ | ||
| 14 | +@Entity | ||
| 15 | +@Table(name = "xkl_amp_report") | ||
| 16 | +@Data | ||
| 17 | +public class AMPReport { | ||
| 18 | + //用户id | ||
| 19 | + @Id | ||
| 20 | + @Column(name = "id") | ||
| 21 | + private int id; | ||
| 22 | + | ||
| 23 | + @Column(name = "member_id") | ||
| 24 | + private int member_id; | ||
| 25 | + // 姓名 | ||
| 26 | + @Column(name = "name") | ||
| 27 | + private String name; | ||
| 28 | + // 报告标题 | ||
| 29 | + @Column(name = "title") | ||
| 30 | + private String title; | ||
| 31 | + // 体检时间 | ||
| 32 | + @Column(name = "check_time") | ||
| 33 | + private Timestamp check_time; | ||
| 34 | + // 上传时间 | ||
| 35 | + @Column(name = "uptime") | ||
| 36 | + private Timestamp uptime; | ||
| 37 | + //用户账号 | ||
| 38 | + @Column(name = "account_str") | ||
| 39 | + private String account_str; | ||
| 40 | + // 0, 男; 1,女 | ||
| 41 | + @Column(name = "sex") | ||
| 42 | + private int sex; | ||
| 43 | + | ||
| 44 | + @Column(name = "age") | ||
| 45 | + private int age; | ||
| 46 | + | ||
| 47 | + @Column(name = "weight") | ||
| 48 | + private int weight; | ||
| 49 | + // 脉搏 | ||
| 50 | + @Column(name = "pulse") | ||
| 51 | + private int pulse; | ||
| 52 | + // 呼吸频率 | ||
| 53 | + @Column(name = "breath_rate") | ||
| 54 | + private int breath_rate; | ||
| 55 | + // 大气压力 | ||
| 56 | + @Column(name = "atmos_pressure") | ||
| 57 | + private int atmos_pressure; | ||
| 58 | + | ||
| 59 | + @Column(name = "LCA") | ||
| 60 | + private float LCA; | ||
| 61 | + | ||
| 62 | + @Column(name = "RCA") | ||
| 63 | + private float RCA; | ||
| 64 | + | ||
| 65 | + @Column(name = "LAC") | ||
| 66 | + private float LAC; | ||
| 67 | + | ||
| 68 | + @Column(name = "RAC") | ||
| 69 | + private float RAC; | ||
| 70 | + | ||
| 71 | + @Column(name = "ABD") | ||
| 72 | + private float ABD; | ||
| 73 | + // 温度和 | ||
| 74 | + @Column(name = "temp_sum") | ||
| 75 | + private float temp_sum; | ||
| 76 | + // 稳定值 | ||
| 77 | + @Column(name = "stable") | ||
| 78 | + private int stable; | ||
| 79 | + // 报告md5值 | ||
| 80 | + @Column(name = "md5") | ||
| 81 | + private String md5; | ||
| 82 | + // 创建者id | ||
| 83 | + @Column(name = "create_by") | ||
| 84 | + private int create_by; | ||
| 85 | + // 机器号码 | ||
| 86 | + @Column(name = "machine_num") | ||
| 87 | + private String machine_num; | ||
| 88 | + | ||
| 89 | + @Column(name = "T0") | ||
| 90 | + private String T0; | ||
| 91 | + | ||
| 92 | + @Column(name = "T1") | ||
| 93 | + private String T1; | ||
| 94 | + | ||
| 95 | + @Column(name = "T2") | ||
| 96 | + private String T2; | ||
| 97 | + | ||
| 98 | + @Column(name = "T3") | ||
| 99 | + private String T3; | ||
| 100 | + | ||
| 101 | + @Column(name = "T4") | ||
| 102 | + private String T4; | ||
| 103 | + // 体检结论 | ||
| 104 | + @Column(name = "conclusion") | ||
| 105 | + private String conclusion; | ||
| 106 | + // 健康评分 | ||
| 107 | + @Column(name = "score") | ||
| 108 | + private float score; | ||
| 109 | + // 所属公司id | ||
| 110 | + @Column(name = "company_id") | ||
| 111 | + private String company_id; | ||
| 112 | + // 报告状态 0,失效;1有效。 | ||
| 113 | + @Column(name = "status") | ||
| 114 | + private int status; | ||
| 115 | + | ||
| 116 | + public int getId() { | ||
| 117 | + return id; | ||
| 118 | + } | ||
| 119 | + | ||
| 120 | + public void setId(int id) { | ||
| 121 | + this.id = id; | ||
| 122 | + } | ||
| 123 | + | ||
| 124 | + public int getMember_id() { | ||
| 125 | + return member_id; | ||
| 126 | + } | ||
| 127 | + | ||
| 128 | + public void setMember_id(int member_id) { | ||
| 129 | + this.member_id = member_id; | ||
| 130 | + } | ||
| 131 | + | ||
| 132 | + public String getName() { | ||
| 133 | + return name; | ||
| 134 | + } | ||
| 135 | + | ||
| 136 | + public void setName(String name) { | ||
| 137 | + this.name = name; | ||
| 138 | + } | ||
| 139 | + | ||
| 140 | + public String getTitle() { | ||
| 141 | + return title; | ||
| 142 | + } | ||
| 143 | + | ||
| 144 | + public void setTitle(String title) { | ||
| 145 | + this.title = title; | ||
| 146 | + } | ||
| 147 | + | ||
| 148 | + public Timestamp getCheck_time() { | ||
| 149 | + return check_time; | ||
| 150 | + } | ||
| 151 | + | ||
| 152 | + public void setCheck_time(Timestamp check_time) { | ||
| 153 | + this.check_time = check_time; | ||
| 154 | + } | ||
| 155 | + | ||
| 156 | + public Timestamp getUptime() { | ||
| 157 | + return uptime; | ||
| 158 | + } | ||
| 159 | + | ||
| 160 | + public void setUptime(Timestamp uptime) { | ||
| 161 | + this.uptime = uptime; | ||
| 162 | + } | ||
| 163 | + | ||
| 164 | + public String getAccount_str() { | ||
| 165 | + return account_str; | ||
| 166 | + } | ||
| 167 | + | ||
| 168 | + public void setAccount_str(String account_str) { | ||
| 169 | + this.account_str = account_str; | ||
| 170 | + } | ||
| 171 | + | ||
| 172 | + public int getSex() { | ||
| 173 | + return sex; | ||
| 174 | + } | ||
| 175 | + | ||
| 176 | + public void setSex(int sex) { | ||
| 177 | + this.sex = sex; | ||
| 178 | + } | ||
| 179 | + | ||
| 180 | + public int getAge() { | ||
| 181 | + return age; | ||
| 182 | + } | ||
| 183 | + | ||
| 184 | + public void setAge(int age) { | ||
| 185 | + this.age = age; | ||
| 186 | + } | ||
| 187 | + | ||
| 188 | + public int getWeight() { | ||
| 189 | + return weight; | ||
| 190 | + } | ||
| 191 | + | ||
| 192 | + public void setWeight(int weight) { | ||
| 193 | + this.weight = weight; | ||
| 194 | + } | ||
| 195 | + | ||
| 196 | + public int getPulse() { | ||
| 197 | + return pulse; | ||
| 198 | + } | ||
| 199 | + | ||
| 200 | + public void setPulse(int pulse) { | ||
| 201 | + this.pulse = pulse; | ||
| 202 | + } | ||
| 203 | + | ||
| 204 | + public int getBreath_rate() { | ||
| 205 | + return breath_rate; | ||
| 206 | + } | ||
| 207 | + | ||
| 208 | + public void setBreath_rate(int breath_rate) { | ||
| 209 | + this.breath_rate = breath_rate; | ||
| 210 | + } | ||
| 211 | + | ||
| 212 | + public int getAtmos_pressure() { | ||
| 213 | + return atmos_pressure; | ||
| 214 | + } | ||
| 215 | + | ||
| 216 | + public void setAtmos_pressure(int atmos_pressure) { | ||
| 217 | + this.atmos_pressure = atmos_pressure; | ||
| 218 | + } | ||
| 219 | + | ||
| 220 | + public float getLCA() { | ||
| 221 | + return LCA; | ||
| 222 | + } | ||
| 223 | + | ||
| 224 | + public void setLCA(float LCA) { | ||
| 225 | + this.LCA = LCA; | ||
| 226 | + } | ||
| 227 | + | ||
| 228 | + public float getRCA() { | ||
| 229 | + return RCA; | ||
| 230 | + } | ||
| 231 | + | ||
| 232 | + public void setRCA(float RCA) { | ||
| 233 | + this.RCA = RCA; | ||
| 234 | + } | ||
| 235 | + | ||
| 236 | + public float getLAC() { | ||
| 237 | + return LAC; | ||
| 238 | + } | ||
| 239 | + | ||
| 240 | + public void setLAC(float LAC) { | ||
| 241 | + this.LAC = LAC; | ||
| 242 | + } | ||
| 243 | + | ||
| 244 | + public float getRAC() { | ||
| 245 | + return RAC; | ||
| 246 | + } | ||
| 247 | + | ||
| 248 | + public void setRAC(float RAC) { | ||
| 249 | + this.RAC = RAC; | ||
| 250 | + } | ||
| 251 | + | ||
| 252 | + public float getABD() { | ||
| 253 | + return ABD; | ||
| 254 | + } | ||
| 255 | + | ||
| 256 | + public void setABD(float ABD) { | ||
| 257 | + this.ABD = ABD; | ||
| 258 | + } | ||
| 259 | + | ||
| 260 | + public float getTemp_sum() { | ||
| 261 | + return temp_sum; | ||
| 262 | + } | ||
| 263 | + | ||
| 264 | + public void setTemp_sum(float temp_sum) { | ||
| 265 | + this.temp_sum = temp_sum; | ||
| 266 | + } | ||
| 267 | + | ||
| 268 | + public int getStable() { | ||
| 269 | + return stable; | ||
| 270 | + } | ||
| 271 | + | ||
| 272 | + public void setStable(int stable) { | ||
| 273 | + this.stable = stable; | ||
| 274 | + } | ||
| 275 | + | ||
| 276 | + public String getMd5() { | ||
| 277 | + return md5; | ||
| 278 | + } | ||
| 279 | + | ||
| 280 | + public void setMd5(String md5) { | ||
| 281 | + this.md5 = md5; | ||
| 282 | + } | ||
| 283 | + | ||
| 284 | + public int getCreate_by() { | ||
| 285 | + return create_by; | ||
| 286 | + } | ||
| 287 | + | ||
| 288 | + public void setCreate_by(int create_by) { | ||
| 289 | + this.create_by = create_by; | ||
| 290 | + } | ||
| 291 | + | ||
| 292 | + public String getMachine_num() { | ||
| 293 | + return machine_num; | ||
| 294 | + } | ||
| 295 | + | ||
| 296 | + public void setMachine_num(String machine_num) { | ||
| 297 | + this.machine_num = machine_num; | ||
| 298 | + } | ||
| 299 | + | ||
| 300 | + public String getT0() { | ||
| 301 | + return T0; | ||
| 302 | + } | ||
| 303 | + | ||
| 304 | + public void setT0(String t0) { | ||
| 305 | + T0 = t0; | ||
| 306 | + } | ||
| 307 | + | ||
| 308 | + public String getT1() { | ||
| 309 | + return T1; | ||
| 310 | + } | ||
| 311 | + | ||
| 312 | + public void setT1(String t1) { | ||
| 313 | + T1 = t1; | ||
| 314 | + } | ||
| 315 | + | ||
| 316 | + public String getT2() { | ||
| 317 | + return T2; | ||
| 318 | + } | ||
| 319 | + | ||
| 320 | + public void setT2(String t2) { | ||
| 321 | + T2 = t2; | ||
| 322 | + } | ||
| 323 | + | ||
| 324 | + public String getT3() { | ||
| 325 | + return T3; | ||
| 326 | + } | ||
| 327 | + | ||
| 328 | + public void setT3(String t3) { | ||
| 329 | + T3 = t3; | ||
| 330 | + } | ||
| 331 | + | ||
| 332 | + public String getT4() { | ||
| 333 | + return T4; | ||
| 334 | + } | ||
| 335 | + | ||
| 336 | + public void setT4(String t4) { | ||
| 337 | + T4 = t4; | ||
| 338 | + } | ||
| 339 | + | ||
| 340 | + public String getConclusion() { | ||
| 341 | + return conclusion; | ||
| 342 | + } | ||
| 343 | + | ||
| 344 | + public void setConclusion(String conclusion) { | ||
| 345 | + this.conclusion = conclusion; | ||
| 346 | + } | ||
| 347 | + | ||
| 348 | + public float getScore() { | ||
| 349 | + return score; | ||
| 350 | + } | ||
| 351 | + | ||
| 352 | + public void setScore(float score) { | ||
| 353 | + this.score = score; | ||
| 354 | + } | ||
| 355 | + | ||
| 356 | + public String getCompany_id() { | ||
| 357 | + return company_id; | ||
| 358 | + } | ||
| 359 | + | ||
| 360 | + public void setCompany_id(String company_id) { | ||
| 361 | + this.company_id = company_id; | ||
| 362 | + } | ||
| 363 | + | ||
| 364 | + public int getStatus() { | ||
| 365 | + return status; | ||
| 366 | + } | ||
| 367 | + | ||
| 368 | + public void setStatus(int status) { | ||
| 369 | + this.status = status; | ||
| 370 | + } | ||
| 371 | +} |
-
Please register or login to post a comment