Commit 98e0759adc78bdfa5b0bfdc2921da52f15a43f9a

Authored by jiangjiazhi
1 parent 6572d128dd

增加设置parentid

Showing 1 changed file with 3 additions and 3 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/MatDeliverAddRequest.java View file @ 98e0759
... ... @@ -375,7 +375,7 @@
375 375  
376 376 public static class Placenta{
377 377 //心率
378   - private double heartRate;
  378 + private Double heartRate;
379 379 //胎方位
380 380 private String fetalPosition;
381 381 //胎先露
382 382  
... ... @@ -399,11 +399,11 @@
399 399 this.fetalPresentation = fetalPresentation;
400 400 }
401 401  
402   - public double getHeartRate() {
  402 + public Double getHeartRate() {
403 403 return heartRate;
404 404 }
405 405  
406   - public void setHeartRate(double heartRate) {
  406 + public void setHeartRate(Double heartRate) {
407 407 this.heartRate = heartRate;
408 408 }
409 409