Commit ba8db7209e9e088d5106a630b67e9fc62150b563

Authored by liquanyu
1 parent 39c1b17242

update

Showing 4 changed files with 179 additions and 1 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/BabyPsychologistModel.java View file @ ba8db72
... ... @@ -176,6 +176,62 @@
176 176 //处理意见
177 177 private String handlingOpinions;
178 178  
  179 + //血常规 肝功 肾功 心电图 aso 其他
  180 + private String xcg;
  181 + private String gg;
  182 + private String sg;
  183 + private String xdt;
  184 + private String aso;
  185 + private String fzOther;
  186 +
  187 + public String getXcg() {
  188 + return xcg;
  189 + }
  190 +
  191 + public void setXcg(String xcg) {
  192 + this.xcg = xcg;
  193 + }
  194 +
  195 + public String getGg() {
  196 + return gg;
  197 + }
  198 +
  199 + public void setGg(String gg) {
  200 + this.gg = gg;
  201 + }
  202 +
  203 + public String getSg() {
  204 + return sg;
  205 + }
  206 +
  207 + public void setSg(String sg) {
  208 + this.sg = sg;
  209 + }
  210 +
  211 + public String getXdt() {
  212 + return xdt;
  213 + }
  214 +
  215 + public void setXdt(String xdt) {
  216 + this.xdt = xdt;
  217 + }
  218 +
  219 + public String getAso() {
  220 + return aso;
  221 + }
  222 +
  223 + public void setAso(String aso) {
  224 + this.aso = aso;
  225 + }
  226 +
  227 + public String getFzOther() {
  228 + return fzOther;
  229 + }
  230 +
  231 + public void setFzOther(String fzOther) {
  232 + this.fzOther = fzOther;
  233 + }
  234 +
179 235 public String getMremark() {
180 236 return mremark;
181 237 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyPsychologistFacade.java View file @ ba8db72
... ... @@ -150,7 +150,12 @@
150 150 model.setOther(request.getOther());
151 151 model.setObservation(request.getObservation());
152 152 model.setHandlingOpinions(request.getHandlingOpinions());
153   -
  153 + model.setXcg(request.getXcg());
  154 + model.setGg(request.getGg());
  155 + model.setSg(request.getSg());
  156 + model.setXdt(request.getXdt());
  157 + model.setAso(request.getAso());
  158 + model.setFzOther(request.getFzOther());
154 159  
155 160 return model;
156 161  
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyPsychologistRequest.java View file @ ba8db72
... ... @@ -169,7 +169,61 @@
169 169 private String observation;
170 170 //处理意见
171 171 private String handlingOpinions;
  172 + //血常规 肝功 肾功 心电图 aso 其他
  173 + private String xcg;
  174 + private String gg;
  175 + private String sg;
  176 + private String xdt;
  177 + private String aso;
  178 + private String fzOther;
172 179  
  180 + public String getXcg() {
  181 + return xcg;
  182 + }
  183 +
  184 + public void setXcg(String xcg) {
  185 + this.xcg = xcg;
  186 + }
  187 +
  188 + public String getGg() {
  189 + return gg;
  190 + }
  191 +
  192 + public void setGg(String gg) {
  193 + this.gg = gg;
  194 + }
  195 +
  196 + public String getSg() {
  197 + return sg;
  198 + }
  199 +
  200 + public void setSg(String sg) {
  201 + this.sg = sg;
  202 + }
  203 +
  204 + public String getXdt() {
  205 + return xdt;
  206 + }
  207 +
  208 + public void setXdt(String xdt) {
  209 + this.xdt = xdt;
  210 + }
  211 +
  212 + public String getAso() {
  213 + return aso;
  214 + }
  215 +
  216 + public void setAso(String aso) {
  217 + this.aso = aso;
  218 + }
  219 +
  220 + public String getFzOther() {
  221 + return fzOther;
  222 + }
  223 +
  224 + public void setFzOther(String fzOther) {
  225 + this.fzOther = fzOther;
  226 + }
173 227  
174 228 public String getId() {
175 229 return id;
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyPsychologistResult.java View file @ ba8db72
... ... @@ -171,6 +171,62 @@
171 171 //处理意见
172 172 private String handlingOpinions;
173 173  
  174 + //血常规 肝功 肾功 心电图 aso 其他
  175 + private String xcg;
  176 + private String gg;
  177 + private String sg;
  178 + private String xdt;
  179 + private String aso;
  180 + private String fzOther;
  181 +
  182 + public String getXcg() {
  183 + return xcg;
  184 + }
  185 +
  186 + public void setXcg(String xcg) {
  187 + this.xcg = xcg;
  188 + }
  189 +
  190 + public String getGg() {
  191 + return gg;
  192 + }
  193 +
  194 + public void setGg(String gg) {
  195 + this.gg = gg;
  196 + }
  197 +
  198 + public String getSg() {
  199 + return sg;
  200 + }
  201 +
  202 + public void setSg(String sg) {
  203 + this.sg = sg;
  204 + }
  205 +
  206 + public String getXdt() {
  207 + return xdt;
  208 + }
  209 +
  210 + public void setXdt(String xdt) {
  211 + this.xdt = xdt;
  212 + }
  213 +
  214 + public String getAso() {
  215 + return aso;
  216 + }
  217 +
  218 + public void setAso(String aso) {
  219 + this.aso = aso;
  220 + }
  221 +
  222 + public String getFzOther() {
  223 + return fzOther;
  224 + }
  225 +
  226 + public void setFzOther(String fzOther) {
  227 + this.fzOther = fzOther;
  228 + }
  229 +
174 230 public String getXlzkProjectName() {
175 231 return xlzkProjectName;
176 232 }
... ... @@ -865,6 +921,13 @@
865 921 setOther(destModel.getOther());
866 922 setObservation(destModel.getObservation());
867 923 setHandlingOpinions(destModel.getHandlingOpinions());
  924 + setXcg(destModel.getXcg());
  925 + setGg(destModel.getGg());
  926 + setSg(destModel.getSg());
  927 + setXdt(destModel.getXdt());
  928 + setAso(destModel.getAso());
  929 + setFzOther(destModel.getFzOther());
  930 +
868 931 return this;
869 932 }
870 933