Commit 9af35dbf74abf1110bcf8dc7d9347cb7de5d1f47

Authored by jiangjiazhi
1 parent 64cc8ebf08

1

Showing 2 changed files with 4 additions and 4 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/MaternalDeliverModel.java View file @ 9af35db
... ... @@ -94,7 +94,7 @@
94 94 //接生医生
95 95 private String deliverDoctor;
96 96 private Integer yn;
97   - public class ExtPlacenta{
  97 + public static class ExtPlacenta{
98 98 //胎盘娩出方式
99 99 private String tpmcType;
100 100 //娩出方式
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/MatDeliverAddRequest.java View file @ 9af35db
... ... @@ -416,7 +416,7 @@
416 416 }
417 417 }
418 418  
419   - public class Baby implements IBasicRequestConvert<BabyModel>{
  419 + public static class Baby implements IBasicRequestConvert<BabyModel>{
420 420  
421 421 private String id;
422 422 //新生儿性别;
423 423  
... ... @@ -561,12 +561,12 @@
561 561 this.pregnancyOut = pregnancyOut;
562 562 }
563 563 }
564   - public static void main(String[] args){
  564 +/* public static void main(String[] args){
565 565 MatDeliverAddRequest matDeliverAddRequest = new MatDeliverAddRequest();
566 566 List<Baby> babies = new ArrayList<>();
567 567 babies.add(matDeliverAddRequest .new Baby());
568 568 matDeliverAddRequest.setBabies(babies);
569 569 System.out.print(JsonUtil.obj2JsonString(matDeliverAddRequest));
570   - }
  570 + }*/
571 571 }