Commit 724c2d14f1255fb6b3a6c871f503ba125f4fcfa9
1 parent
1d08efbbdf
Exists in
master
and in
8 other branches
修改类型
Showing 2 changed files with 30 additions and 30 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/BabyVisitModel.java
View file @
724c2d1
| ... | ... | @@ -131,13 +131,13 @@ |
| 131 | 131 | private String disease; |
| 132 | 132 | |
| 133 | 133 | // 出生体重 |
| 134 | - private double birthWeight; | |
| 134 | + private Double birthWeight; | |
| 135 | 135 | |
| 136 | 136 | // 目前体重 |
| 137 | - private double weight; | |
| 137 | + private Double weight; | |
| 138 | 138 | |
| 139 | 139 | // 出生身长 |
| 140 | - private double height; | |
| 140 | + private Double height; | |
| 141 | 141 | |
| 142 | 142 | // 喂养方式 |
| 143 | 143 | private Integer feedType; |
| 144 | 144 | |
| 145 | 145 | |
| ... | ... | @@ -158,13 +158,13 @@ |
| 158 | 158 | private Integer shitTimes; |
| 159 | 159 | |
| 160 | 160 | // 体温 |
| 161 | - private double temperature; | |
| 161 | + private Double temperature; | |
| 162 | 162 | |
| 163 | 163 | // 心率 |
| 164 | - private double heartRate; | |
| 164 | + private Double heartRate; | |
| 165 | 165 | |
| 166 | 166 | // 呼吸频率 |
| 167 | - private double respiratoryRate; | |
| 167 | + private Double respiratoryRate; | |
| 168 | 168 | |
| 169 | 169 | // 面色 |
| 170 | 170 | private String complexion; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyVisitResult.java
View file @
724c2d1
| ... | ... | @@ -280,31 +280,31 @@ |
| 280 | 280 | private double height; |
| 281 | 281 | |
| 282 | 282 | // 喂养方式 |
| 283 | - private int feedType; | |
| 283 | + private Integer feedType; | |
| 284 | 284 | |
| 285 | 285 | // 吃奶量 |
| 286 | - private int eatMilk; | |
| 286 | + private Integer eatMilk; | |
| 287 | 287 | |
| 288 | 288 | // 吃奶次数 |
| 289 | - private int eatTime; | |
| 289 | + private Integer eatTime; | |
| 290 | 290 | |
| 291 | 291 | // 呕吐 |
| 292 | - private int emesis; | |
| 292 | + private Integer emesis; | |
| 293 | 293 | |
| 294 | 294 | // 大便 |
| 295 | 295 | private String shit; |
| 296 | 296 | |
| 297 | 297 | // 大便次数 |
| 298 | - private int shitTimes; | |
| 298 | + private Integer shitTimes; | |
| 299 | 299 | |
| 300 | 300 | // 体温 |
| 301 | - private double temperature; | |
| 301 | + private Double temperature; | |
| 302 | 302 | |
| 303 | 303 | // 心率 |
| 304 | - private double heartRate; | |
| 304 | + private Double heartRate; | |
| 305 | 305 | |
| 306 | 306 | // 呼吸频率 |
| 307 | - private double respiratoryRate; | |
| 307 | + private Double respiratoryRate; | |
| 308 | 308 | |
| 309 | 309 | // 面色 |
| 310 | 310 | private Map complexion; |
| ... | ... | @@ -402,7 +402,7 @@ |
| 402 | 402 | } |
| 403 | 403 | |
| 404 | 404 | |
| 405 | - public double getBirthWeight() { | |
| 405 | + public Double getBirthWeight() { | |
| 406 | 406 | return birthWeight; |
| 407 | 407 | } |
| 408 | 408 | |
| 409 | 409 | |
| 410 | 410 | |
| 411 | 411 | |
| 412 | 412 | |
| 413 | 413 | |
| 414 | 414 | |
| 415 | 415 | |
| 416 | 416 | |
| ... | ... | @@ -410,39 +410,39 @@ |
| 410 | 410 | this.birthWeight = birthWeight; |
| 411 | 411 | } |
| 412 | 412 | |
| 413 | - public double getWeight() { | |
| 413 | + public Double getWeight() { | |
| 414 | 414 | return weight; |
| 415 | 415 | } |
| 416 | 416 | |
| 417 | - public void setWeight(double weight) { | |
| 417 | + public void setWeight(Double weight) { | |
| 418 | 418 | this.weight = weight; |
| 419 | 419 | } |
| 420 | 420 | |
| 421 | - public double getHeight() { | |
| 421 | + public Double getHeight() { | |
| 422 | 422 | return height; |
| 423 | 423 | } |
| 424 | 424 | |
| 425 | - public void setHeight(double height) { | |
| 425 | + public void setHeight(Double height) { | |
| 426 | 426 | this.height = height; |
| 427 | 427 | } |
| 428 | 428 | |
| 429 | - public int getFeedType() { | |
| 429 | + public Integer getFeedType() { | |
| 430 | 430 | return feedType; |
| 431 | 431 | } |
| 432 | 432 | |
| 433 | - public void setFeedType(int feedType) { | |
| 433 | + public void setFeedType(Integer feedType) { | |
| 434 | 434 | this.feedType = feedType; |
| 435 | 435 | } |
| 436 | 436 | |
| 437 | - public int getEatMilk() { | |
| 437 | + public Integer getEatMilk() { | |
| 438 | 438 | return eatMilk; |
| 439 | 439 | } |
| 440 | 440 | |
| 441 | - public void setEatMilk(int eatMilk) { | |
| 441 | + public void setEatMilk(Integer eatMilk) { | |
| 442 | 442 | this.eatMilk = eatMilk; |
| 443 | 443 | } |
| 444 | 444 | |
| 445 | - public int getEatTime() { | |
| 445 | + public Integer getEatTime() { | |
| 446 | 446 | return eatTime; |
| 447 | 447 | } |
| 448 | 448 | |
| ... | ... | @@ -450,7 +450,7 @@ |
| 450 | 450 | this.eatTime = eatTime; |
| 451 | 451 | } |
| 452 | 452 | |
| 453 | - public int getEmesis() { | |
| 453 | + public Integer getEmesis() { | |
| 454 | 454 | return emesis; |
| 455 | 455 | } |
| 456 | 456 | |
| ... | ... | @@ -466,7 +466,7 @@ |
| 466 | 466 | this.shit = shit; |
| 467 | 467 | } |
| 468 | 468 | |
| 469 | - public int getShitTimes() { | |
| 469 | + public Integer getShitTimes() { | |
| 470 | 470 | return shitTimes; |
| 471 | 471 | } |
| 472 | 472 | |
| ... | ... | @@ -474,7 +474,7 @@ |
| 474 | 474 | this.shitTimes = shitTimes; |
| 475 | 475 | } |
| 476 | 476 | |
| 477 | - public double getTemperature() { | |
| 477 | + public Double getTemperature() { | |
| 478 | 478 | return temperature; |
| 479 | 479 | } |
| 480 | 480 | |
| ... | ... | @@ -482,7 +482,7 @@ |
| 482 | 482 | this.temperature = temperature; |
| 483 | 483 | } |
| 484 | 484 | |
| 485 | - public double getHeartRate() { | |
| 485 | + public Double getHeartRate() { | |
| 486 | 486 | return heartRate; |
| 487 | 487 | } |
| 488 | 488 | |
| ... | ... | @@ -490,7 +490,7 @@ |
| 490 | 490 | this.heartRate = heartRate; |
| 491 | 491 | } |
| 492 | 492 | |
| 493 | - public double getRespiratoryRate() { | |
| 493 | + public Double getRespiratoryRate() { | |
| 494 | 494 | return respiratoryRate; |
| 495 | 495 | } |
| 496 | 496 | |
| ... | ... | @@ -618,7 +618,7 @@ |
| 618 | 618 | this.guide = guide; |
| 619 | 619 | } |
| 620 | 620 | |
| 621 | - public int getHearing() { | |
| 621 | + public Integer getHearing() { | |
| 622 | 622 | return hearing; |
| 623 | 623 | } |
| 624 | 624 |