Antex.java 7.35 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
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
package com.lyms.etl.model;

import org.springframework.data.mongodb.core.mapping.Document;

import java.util.Date;
import java.util.List;

/**
* 产前检查
*
* Created by Administrator on 2016/6/16 0016.
*/
@Document(collection = "lyms_antex")
public class Antex {

private String id;
private String barCode;
private String pid;
private String parentId;
/* //名字
private String name;
//年龄
private String age;
//孕周
private String dueWeek;
//预产期
private String yChanQi;
//手机号
private String phone;
//高危因素
private String riskFactor;
//高危评分
private String riskScore;
//备注
private String remarks;*/
//<!---------基本信息----------->
//检查报告列表
// private List reportList;
//当前孕周
private String currentDueDate;
//主诉
private String chiefComplaint;
//重量
private Double weight;
//血压
private String bp;
//宫高
private String gongGao;
//腹围
private String abdominalCircumference;
//浮肿
private String edema;
//胎数
private String tireNumber;
//胎数据
/* Double heartRate;
FetalPosition 胎方位
FetalPresentation 胎先露
join 衔接*/
private List tireData;
//血红蛋白
private String hemoglobin;
//尿蛋白
private String urineProtein;
// B 炒
private String bChao;
//血糖
private String bloodSugar;
//高危因素
private String riskFactor;
// 高危评分
private String riskScore;
//其他高危
private String otherRisk;
//诊断
private String diagnosis;
//分类
private String type;
private String typeYc;
//处理意见
private String treatmentOpinion;
//指导
private String guide;
//产检医生
private String checkDoctor;
//产检日期
private Date checkDate;
//下次产检日期
private Date nextCheckTime;
private Integer yn;
private Date created;
private Date modified;
private String hospitalId;
private String cDueWeek;
//操作人
private Integer operator;

public String getBarCode() {
return barCode;
}

public void setBarCode(String barCode) {
this.barCode = barCode;
}

public Integer getOperator() {
return operator;
}

public void setOperator(Integer operator) {
this.operator = operator;
}

public String getPid() {
return pid;
}

public void setPid(String pid) {
this.pid = pid;
}

public String getcDueWeek() {
return cDueWeek;
}

public void setcDueWeek(String cDueWeek) {
this.cDueWeek = cDueWeek;
}

public Date getModified() {
return modified;
}

public void setModified(Date modified) {
this.modified = modified;
}

public String getHospitalId() {
return hospitalId;
}

public void setHospitalId(String hospitalId) {
this.hospitalId = hospitalId;
}

public String getTypeYc() {
return typeYc;
}

public void setTypeYc(String typeYc) {
this.typeYc = typeYc;
}

public Date getCreated() {
return created;
}

public void setCreated(Date created) {
this.created = created;
}

public Integer getYn() {
return yn;
}

public void setYn(Integer yn) {
this.yn = yn;
}

public String getAbdominalCircumference() {
return abdominalCircumference;
}

public void setAbdominalCircumference(String abdominalCircumference) {
this.abdominalCircumference = abdominalCircumference;
}

public String getbChao() {
return bChao;
}

public void setbChao(String bChao) {
this.bChao = bChao;
}

public String getBloodSugar() {
return bloodSugar;
}

public void setBloodSugar(String bloodSugar) {
this.bloodSugar = bloodSugar;
}

public String getBp() {
return bp;
}

public void setBp(String bp) {
this.bp = bp;
}



public String getCheckDoctor() {
return checkDoctor;
}

public void setCheckDoctor(String checkDoctor) {
this.checkDoctor = checkDoctor;
}

public String getChiefComplaint() {
return chiefComplaint;
}

public void setChiefComplaint(String chiefComplaint) {
this.chiefComplaint = chiefComplaint;
}

public String getCurrentDueDate() {
return currentDueDate;
}

public void setCurrentDueDate(String currentDueDate) {
this.currentDueDate = currentDueDate;
}

public String getDiagnosis() {
return diagnosis;
}

public void setDiagnosis(String diagnosis) {
this.diagnosis = diagnosis;
}

public String getEdema() {
return edema;
}

public void setEdema(String edema) {
this.edema = edema;
}

public String getGongGao() {
return gongGao;
}

public void setGongGao(String gongGao) {
this.gongGao = gongGao;
}

public String getGuide() {
return guide;
}

public void setGuide(String guide) {
this.guide = guide;
}

public String getHemoglobin() {
return hemoglobin;
}

public void setHemoglobin(String hemoglobin) {
this.hemoglobin = hemoglobin;
}

public String getId() {
return id;
}

public void setId(String id) {
this.id = id;
}

public Date getCheckDate() {
return checkDate;
}

public void setCheckDate(Date checkDate) {
this.checkDate = checkDate;
}

public Date getNextCheckTime() {
return nextCheckTime;
}

public void setNextCheckTime(Date nextCheckTime) {
this.nextCheckTime = nextCheckTime;
}

public String getOtherRisk() {
return otherRisk;
}

public void setOtherRisk(String otherRisk) {
this.otherRisk = otherRisk;
}

public String getRiskFactor() {
return riskFactor;
}

public void setRiskFactor(String riskFactor) {
this.riskFactor = riskFactor;
}

public String getRiskScore() {
return riskScore;
}

public void setRiskScore(String riskScore) {
this.riskScore = riskScore;
}

public List getTireData() {
return tireData;
}


public void setTireData(List tireData) {
this.tireData = tireData;
}

public String getTireNumber() {
return tireNumber;
}

public void setTireNumber(String tireNumber) {
this.tireNumber = tireNumber;
}

public String getTreatmentOpinion() {
return treatmentOpinion;
}

public void setTreatmentOpinion(String treatmentOpinion) {
this.treatmentOpinion = treatmentOpinion;
}

public String getType() {
return type;
}

public void setType(String type) {
this.type = type;
}

public String getUrineProtein() {
return urineProtein;
}

public void setUrineProtein(String urineProtein) {
this.urineProtein = urineProtein;
}

public Double getWeight() {
return weight;
}

public void setWeight(Double weight) {
this.weight = weight;
}

public String getParentId() {
return parentId;
}

public void setParentId(String parentId) {
this.parentId = parentId;
}
}