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;