From bc47f9084d0a97a5559c2ac8083b1e429a0b0b5b Mon Sep 17 00:00:00 2001 From: changpengfei Date: Wed, 8 Sep 2021 20:18:22 +0800 Subject: [PATCH] =?UTF-8?q?=E7=97=85=E4=BE=8BID=E5=AD=97=E6=AE=B5=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/lyms/talkonlineweb/controller/PatientController.java | 1 - .../src/main/java/com/lyms/talkonlineweb/domain/PatientInfo.java | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/PatientController.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/PatientController.java index 993ec3d..e84e49c 100644 --- a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/PatientController.java +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/PatientController.java @@ -75,7 +75,6 @@ public class PatientController { public BaseResponse savePatient(@Validated LymsPatient patient, BindingResult result, LymsPcase pcase, String illness){ BaseResponse baseResponse=new BaseResponse(); log.info(">>>>>>>>>>>>>>>登记病例"); - log.info(">>>>>>>>>>>>>>>登记病例"); baseResponse.setErrormsg(""); LymsPatient patient2=lymsPatientService.getOne(Wrappers.query(patient).eq("idno",patient.getIdno())); if(patient2==null){ diff --git a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/PatientInfo.java b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/PatientInfo.java index 81a2a2e..db3c782 100644 --- a/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/PatientInfo.java +++ b/talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/PatientInfo.java @@ -125,6 +125,10 @@ public class PatientInfo implements Serializable { @TableField(value = "iname") private String iname; + @TableField(value = "ilid")//疾病行ID + private Integer ilid; + + @TableField(exist = false) private static final long serialVersionUID = 1L; -- 1.8.3.1