Commit 156cadbd5e8b42c2e7763e124ea2831a43196ce6

Authored by jiangjiazhi
1 parent 0ce57e3713
Exists in master

修改产检删除

Showing 1 changed file with 30 additions and 0 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/AntExRecordModel.java View file @ 156cadb
... ... @@ -22,6 +22,8 @@
22 22 private String id;
23 23 //原始表的id
24 24 private String fId;
  25 + //条码号
  26 + private String barCode;
25 27  
26 28 private String parentId;
27 29  
28 30  
... ... @@ -51,12 +53,40 @@
51 53 private String pid;
52 54 //建档时间
53 55 private Date buildTime;
  56 + //建档医生
  57 + private String buildDoctor;
54 58 //末次月经
55 59 private Date lastMenses;
56 60  
57 61 private Date modified;
58 62  
59 63 private Date created;
  64 + //下次产检时间
  65 + private Date nextCheckTime;
  66 +
  67 + public Date getNextCheckTime() {
  68 + return nextCheckTime;
  69 + }
  70 +
  71 + public void setNextCheckTime(Date nextCheckTime) {
  72 + this.nextCheckTime = nextCheckTime;
  73 + }
  74 +
  75 + public String getBuildDoctor() {
  76 + return buildDoctor;
  77 + }
  78 +
  79 + public void setBuildDoctor(String buildDoctor) {
  80 + this.buildDoctor = buildDoctor;
  81 + }
  82 +
  83 + public String getBarCode() {
  84 + return barCode;
  85 + }
  86 +
  87 + public void setBarCode(String barCode) {
  88 + this.barCode = barCode;
  89 + }
60 90  
61 91 public String getPhone() {
62 92 return phone;