Commit 1f0f2a86b9ac13730d699322274cccdaa6b2afdd
1 parent
8e55786cb9
Exists in
master
and in
8 other branches
增加
Showing 1 changed file with 162 additions and 159 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/BabyVisitModel.java
View file @
1f0f2a8
... | ... | @@ -236,223 +236,230 @@ |
236 | 236 | private String doctorSign; |
237 | 237 | |
238 | 238 | |
239 | - | |
240 | - public String getBirthSituation() { | |
241 | - return birthSituation; | |
239 | + public String getAbdominalPalpation() { | |
240 | + return abdominalPalpation; | |
242 | 241 | } |
243 | 242 | |
244 | - public void setBirthSituation(String birthSituation) { | |
245 | - this.birthSituation = birthSituation; | |
243 | + public void setAbdominalPalpation(String abdominalPalpation) { | |
244 | + this.abdominalPalpation = abdominalPalpation; | |
246 | 245 | } |
247 | 246 | |
248 | - public String getNeonatalAsphyxia() { | |
249 | - return neonatalAsphyxia; | |
247 | + public String getAnus() { | |
248 | + return anus; | |
250 | 249 | } |
251 | 250 | |
252 | - public void setNeonatalAsphyxia(String neonatalAsphyxia) { | |
253 | - this.neonatalAsphyxia = neonatalAsphyxia; | |
251 | + public void setAnus(String anus) { | |
252 | + this.anus = anus; | |
254 | 253 | } |
255 | 254 | |
256 | - public String getDeformity() { | |
257 | - return deformity; | |
255 | + public String getAuscultation() { | |
256 | + return auscultation; | |
258 | 257 | } |
259 | 258 | |
260 | - public void setDeformity(String deformity) { | |
261 | - this.deformity = deformity; | |
259 | + public void setAuscultation(String auscultation) { | |
260 | + this.auscultation = auscultation; | |
262 | 261 | } |
263 | 262 | |
264 | - public Integer getHearing() { | |
265 | - return hearing; | |
263 | + public String getBackbone() { | |
264 | + return backbone; | |
266 | 265 | } |
267 | 266 | |
268 | - public void setHearing(Integer hearing) { | |
269 | - this.hearing = hearing; | |
267 | + public void setBackbone(String backbone) { | |
268 | + this.backbone = backbone; | |
270 | 269 | } |
271 | 270 | |
272 | - public String getDisease() { | |
273 | - return disease; | |
271 | + public String getBirthSituation() { | |
272 | + return birthSituation; | |
274 | 273 | } |
275 | 274 | |
276 | - public void setDisease(String disease) { | |
277 | - this.disease = disease; | |
275 | + public void setBirthSituation(String birthSituation) { | |
276 | + this.birthSituation = birthSituation; | |
278 | 277 | } |
279 | 278 | |
280 | - public double getBirthWeight() { | |
279 | + public Double getBirthWeight() { | |
281 | 280 | return birthWeight; |
282 | 281 | } |
283 | 282 | |
284 | - public void setBirthWeight(double birthWeight) { | |
283 | + public void setBirthWeight(Double birthWeight) { | |
285 | 284 | this.birthWeight = birthWeight; |
286 | 285 | } |
287 | 286 | |
288 | - public double getWeight() { | |
289 | - return weight; | |
287 | + public String getBreast() { | |
288 | + return breast; | |
290 | 289 | } |
291 | 290 | |
292 | - public void setWeight(double weight) { | |
293 | - this.weight = weight; | |
291 | + public void setBreast(String breast) { | |
292 | + this.breast = breast; | |
294 | 293 | } |
295 | 294 | |
296 | - public double getHeight() { | |
297 | - return height; | |
295 | + public String getBregma() { | |
296 | + return bregma; | |
298 | 297 | } |
299 | 298 | |
300 | - public void setHeight(double height) { | |
301 | - this.height = height; | |
299 | + public void setBregma(String bregma) { | |
300 | + this.bregma = bregma; | |
302 | 301 | } |
303 | 302 | |
304 | - public Integer getFeedType() { | |
305 | - return feedType; | |
303 | + public String getCervicalMass() { | |
304 | + return cervicalMass; | |
306 | 305 | } |
307 | 306 | |
308 | - public void setFeedType(Integer feedType) { | |
309 | - this.feedType = feedType; | |
307 | + public void setCervicalMass(String cervicalMass) { | |
308 | + this.cervicalMass = cervicalMass; | |
310 | 309 | } |
311 | 310 | |
312 | - public Integer getEatMilk() { | |
313 | - return eatMilk; | |
311 | + public String getComplexion() { | |
312 | + return complexion; | |
314 | 313 | } |
315 | 314 | |
316 | - public void setEatMilk(Integer eatMilk) { | |
317 | - this.eatMilk = eatMilk; | |
315 | + public void setComplexion(String complexion) { | |
316 | + this.complexion = complexion; | |
318 | 317 | } |
319 | 318 | |
320 | - public Integer getEatTime() { | |
321 | - return eatTime; | |
319 | + public Date getCurrentVisit() { | |
320 | + return currentVisit; | |
322 | 321 | } |
323 | 322 | |
324 | - public void setEatTime(Integer eatTime) { | |
325 | - this.eatTime = eatTime; | |
323 | + public void setCurrentVisit(Date currentVisit) { | |
324 | + this.currentVisit = currentVisit; | |
326 | 325 | } |
327 | 326 | |
328 | - public Integer getEmesis() { | |
329 | - return emesis; | |
327 | + public String getDeformity() { | |
328 | + return deformity; | |
330 | 329 | } |
331 | 330 | |
332 | - public void setEmesis(Integer emesis) { | |
333 | - this.emesis = emesis; | |
331 | + public void setDeformity(String deformity) { | |
332 | + this.deformity = deformity; | |
334 | 333 | } |
335 | 334 | |
336 | - public String getShit() { | |
337 | - return shit; | |
335 | + public String getDisease() { | |
336 | + return disease; | |
338 | 337 | } |
339 | 338 | |
340 | - public void setShit(String shit) { | |
341 | - this.shit = shit; | |
339 | + public void setDisease(String disease) { | |
340 | + this.disease = disease; | |
342 | 341 | } |
343 | 342 | |
344 | - public Integer getShitTimes() { | |
345 | - return shitTimes; | |
343 | + public String getDoctorSign() { | |
344 | + return doctorSign; | |
346 | 345 | } |
347 | 346 | |
348 | - public void setShitTimes(Integer shitTimes) { | |
349 | - this.shitTimes = shitTimes; | |
347 | + public void setDoctorSign(String doctorSign) { | |
348 | + this.doctorSign = doctorSign; | |
350 | 349 | } |
351 | 350 | |
352 | - public double getTemperature() { | |
353 | - return temperature; | |
351 | + public String getEarAppearance() { | |
352 | + return earAppearance; | |
354 | 353 | } |
355 | 354 | |
356 | - public void setTemperature(double temperature) { | |
357 | - this.temperature = temperature; | |
355 | + public void setEarAppearance(String earAppearance) { | |
356 | + this.earAppearance = earAppearance; | |
358 | 357 | } |
359 | 358 | |
360 | - public double getHeartRate() { | |
361 | - return heartRate; | |
359 | + public Integer getEatMilk() { | |
360 | + return eatMilk; | |
362 | 361 | } |
363 | 362 | |
364 | - public void setHeartRate(double heartRate) { | |
365 | - this.heartRate = heartRate; | |
363 | + public void setEatMilk(Integer eatMilk) { | |
364 | + this.eatMilk = eatMilk; | |
366 | 365 | } |
367 | 366 | |
368 | - public double getRespiratoryRate() { | |
369 | - return respiratoryRate; | |
367 | + public Integer getEatTime() { | |
368 | + return eatTime; | |
370 | 369 | } |
371 | 370 | |
372 | - public void setRespiratoryRate(double respiratoryRate) { | |
373 | - this.respiratoryRate = respiratoryRate; | |
371 | + public void setEatTime(Integer eatTime) { | |
372 | + this.eatTime = eatTime; | |
374 | 373 | } |
375 | 374 | |
376 | - public String getComplexion() { | |
377 | - return complexion; | |
375 | + public Integer getEmesis() { | |
376 | + return emesis; | |
378 | 377 | } |
379 | 378 | |
380 | - public void setComplexion(String complexion) { | |
381 | - this.complexion = complexion; | |
379 | + public void setEmesis(Integer emesis) { | |
380 | + this.emesis = emesis; | |
382 | 381 | } |
383 | 382 | |
384 | - public String getJaundiceParts() { | |
385 | - return jaundiceParts; | |
383 | + public String getEye() { | |
384 | + return eye; | |
386 | 385 | } |
387 | 386 | |
388 | - public void setJaundiceParts(String jaundiceParts) { | |
389 | - this.jaundiceParts = jaundiceParts; | |
387 | + public void setEye(String eye) { | |
388 | + this.eye = eye; | |
390 | 389 | } |
391 | 390 | |
392 | - public String getBregma() { | |
393 | - return bregma; | |
391 | + public Integer getFeedType() { | |
392 | + return feedType; | |
394 | 393 | } |
395 | 394 | |
396 | - public void setBregma(String bregma) { | |
397 | - this.bregma = bregma; | |
395 | + public void setFeedType(Integer feedType) { | |
396 | + this.feedType = feedType; | |
398 | 397 | } |
399 | 398 | |
400 | - public String getEye() { | |
401 | - return eye; | |
399 | + public String getFunicle() { | |
400 | + return funicle; | |
402 | 401 | } |
403 | 402 | |
404 | - public void setEye(String eye) { | |
405 | - this.eye = eye; | |
403 | + public void setFunicle(String funicle) { | |
404 | + this.funicle = funicle; | |
406 | 405 | } |
407 | 406 | |
408 | - public String getLimbsActivity() { | |
409 | - return limbsActivity; | |
407 | + public String getGuide() { | |
408 | + return guide; | |
410 | 409 | } |
411 | 410 | |
412 | - public void setLimbsActivity(String limbsActivity) { | |
413 | - this.limbsActivity = limbsActivity; | |
411 | + public void setGuide(String guide) { | |
412 | + this.guide = guide; | |
414 | 413 | } |
415 | 414 | |
416 | - public String getEarAppearance() { | |
417 | - return earAppearance; | |
415 | + public Integer getHearing() { | |
416 | + return hearing; | |
418 | 417 | } |
419 | 418 | |
420 | - public void setEarAppearance(String earAppearance) { | |
421 | - this.earAppearance = earAppearance; | |
419 | + public void setHearing(Integer hearing) { | |
420 | + this.hearing = hearing; | |
422 | 421 | } |
423 | 422 | |
424 | - public String getId() { | |
425 | - return id; | |
423 | + public Double getHeartRate() { | |
424 | + return heartRate; | |
426 | 425 | } |
427 | 426 | |
428 | - public void setId(String id) { | |
429 | - this.id = id; | |
427 | + public void setHeartRate(Double heartRate) { | |
428 | + this.heartRate = heartRate; | |
430 | 429 | } |
431 | 430 | |
432 | - public String getCervicalMass() { | |
433 | - return cervicalMass; | |
431 | + public Double getHeight() { | |
432 | + return height; | |
434 | 433 | } |
435 | 434 | |
436 | - public void setCervicalMass(String cervicalMass) { | |
437 | - this.cervicalMass = cervicalMass; | |
435 | + public void setHeight(Double height) { | |
436 | + this.height = height; | |
438 | 437 | } |
439 | 438 | |
440 | - public String getNose() { | |
441 | - return nose; | |
439 | + public String getId() { | |
440 | + return id; | |
442 | 441 | } |
443 | 442 | |
444 | - public void setNose(String nose) { | |
445 | - this.nose = nose; | |
443 | + public void setId(String id) { | |
444 | + this.id = id; | |
446 | 445 | } |
447 | 446 | |
448 | - public String getSkin() { | |
449 | - return skin; | |
447 | + public String getJaundiceParts() { | |
448 | + return jaundiceParts; | |
450 | 449 | } |
451 | 450 | |
452 | - public void setSkin(String skin) { | |
453 | - this.skin = skin; | |
451 | + public void setJaundiceParts(String jaundiceParts) { | |
452 | + this.jaundiceParts = jaundiceParts; | |
454 | 453 | } |
455 | 454 | |
455 | + public String getLimbsActivity() { | |
456 | + return limbsActivity; | |
457 | + } | |
458 | + | |
459 | + public void setLimbsActivity(String limbsActivity) { | |
460 | + this.limbsActivity = limbsActivity; | |
461 | + } | |
462 | + | |
456 | 463 | public String getMouthCavity() { |
457 | 464 | return mouthCavity; |
458 | 465 | } |
459 | 466 | |
460 | 467 | |
461 | 468 | |
462 | 469 | |
463 | 470 | |
464 | 471 | |
465 | 472 | |
466 | 473 | |
467 | 474 | |
... | ... | @@ -461,44 +468,44 @@ |
461 | 468 | this.mouthCavity = mouthCavity; |
462 | 469 | } |
463 | 470 | |
464 | - public String getAnus() { | |
465 | - return anus; | |
471 | + public String getNeonatalAsphyxia() { | |
472 | + return neonatalAsphyxia; | |
466 | 473 | } |
467 | 474 | |
468 | - public void setAnus(String anus) { | |
469 | - this.anus = anus; | |
475 | + public void setNeonatalAsphyxia(String neonatalAsphyxia) { | |
476 | + this.neonatalAsphyxia = neonatalAsphyxia; | |
470 | 477 | } |
471 | 478 | |
472 | - public String getAuscultation() { | |
473 | - return auscultation; | |
479 | + public String getNextVisitAddr() { | |
480 | + return nextVisitAddr; | |
474 | 481 | } |
475 | 482 | |
476 | - public void setAuscultation(String auscultation) { | |
477 | - this.auscultation = auscultation; | |
483 | + public void setNextVisitAddr(String nextVisitAddr) { | |
484 | + this.nextVisitAddr = nextVisitAddr; | |
478 | 485 | } |
479 | 486 | |
480 | - public String getBreast() { | |
481 | - return breast; | |
487 | + public Date getNextVisitDate() { | |
488 | + return nextVisitDate; | |
482 | 489 | } |
483 | 490 | |
484 | - public void setBreast(String breast) { | |
485 | - this.breast = breast; | |
491 | + public void setNextVisitDate(Date nextVisitDate) { | |
492 | + this.nextVisitDate = nextVisitDate; | |
486 | 493 | } |
487 | 494 | |
488 | - public String getAbdominalPalpation() { | |
489 | - return abdominalPalpation; | |
495 | + public String getNose() { | |
496 | + return nose; | |
490 | 497 | } |
491 | 498 | |
492 | - public void setAbdominalPalpation(String abdominalPalpation) { | |
493 | - this.abdominalPalpation = abdominalPalpation; | |
499 | + public void setNose(String nose) { | |
500 | + this.nose = nose; | |
494 | 501 | } |
495 | 502 | |
496 | - public String getBackbone() { | |
497 | - return backbone; | |
503 | + public String getParentId() { | |
504 | + return parentId; | |
498 | 505 | } |
499 | 506 | |
500 | - public void setBackbone(String backbone) { | |
501 | - this.backbone = backbone; | |
507 | + public void setParentId(String parentId) { | |
508 | + this.parentId = parentId; | |
502 | 509 | } |
503 | 510 | |
504 | 511 | public String getPudendum() { |
... | ... | @@ -509,14 +516,6 @@ |
509 | 516 | this.pudendum = pudendum; |
510 | 517 | } |
511 | 518 | |
512 | - public String getFunicle() { | |
513 | - return funicle; | |
514 | - } | |
515 | - | |
516 | - public void setFunicle(String funicle) { | |
517 | - this.funicle = funicle; | |
518 | - } | |
519 | - | |
520 | 519 | public String getReferralAdvice() { |
521 | 520 | return referralAdvice; |
522 | 521 | } |
523 | 522 | |
524 | 523 | |
525 | 524 | |
526 | 525 | |
527 | 526 | |
528 | 527 | |
529 | 528 | |
530 | 529 | |
531 | 530 | |
532 | 531 | |
533 | 532 | |
... | ... | @@ -525,52 +524,56 @@ |
525 | 524 | this.referralAdvice = referralAdvice; |
526 | 525 | } |
527 | 526 | |
528 | - public String getGuide() { | |
529 | - return guide; | |
527 | + public Double getRespiratoryRate() { | |
528 | + return respiratoryRate; | |
530 | 529 | } |
531 | 530 | |
532 | - public void setGuide(String guide) { | |
533 | - this.guide = guide; | |
531 | + public void setRespiratoryRate(Double respiratoryRate) { | |
532 | + this.respiratoryRate = respiratoryRate; | |
534 | 533 | } |
535 | 534 | |
536 | - public Date getCurrentVisit() { | |
537 | - return currentVisit; | |
535 | + public static long getSerialVersionUID() { | |
536 | + return serialVersionUID; | |
538 | 537 | } |
539 | 538 | |
540 | - public void setCurrentVisit(Date currentVisit) { | |
541 | - this.currentVisit = currentVisit; | |
539 | + public String getShit() { | |
540 | + return shit; | |
542 | 541 | } |
543 | 542 | |
544 | - public String getNextVisitAddr() { | |
545 | - return nextVisitAddr; | |
543 | + public void setShit(String shit) { | |
544 | + this.shit = shit; | |
546 | 545 | } |
547 | 546 | |
548 | - public void setNextVisitAddr(String nextVisitAddr) { | |
549 | - this.nextVisitAddr = nextVisitAddr; | |
547 | + public Integer getShitTimes() { | |
548 | + return shitTimes; | |
550 | 549 | } |
551 | 550 | |
552 | - public Date getNextVisitDate() { | |
553 | - return nextVisitDate; | |
551 | + public void setShitTimes(Integer shitTimes) { | |
552 | + this.shitTimes = shitTimes; | |
554 | 553 | } |
555 | 554 | |
556 | - public void setNextVisitDate(Date nextVisitDate) { | |
557 | - this.nextVisitDate = nextVisitDate; | |
555 | + public String getSkin() { | |
556 | + return skin; | |
558 | 557 | } |
559 | 558 | |
560 | - public String getDoctorSign() { | |
561 | - return doctorSign; | |
559 | + public void setSkin(String skin) { | |
560 | + this.skin = skin; | |
562 | 561 | } |
563 | 562 | |
564 | - public void setDoctorSign(String doctorSign) { | |
565 | - this.doctorSign = doctorSign; | |
563 | + public Double getTemperature() { | |
564 | + return temperature; | |
566 | 565 | } |
567 | 566 | |
568 | - public String getParentId() { | |
569 | - return parentId; | |
567 | + public void setTemperature(Double temperature) { | |
568 | + this.temperature = temperature; | |
570 | 569 | } |
571 | 570 | |
572 | - public void setParentId(String parentId) { | |
573 | - this.parentId = parentId; | |
571 | + public Double getWeight() { | |
572 | + return weight; | |
573 | + } | |
574 | + | |
575 | + public void setWeight(Double weight) { | |
576 | + this.weight = weight; | |
574 | 577 | } |
575 | 578 | } |