Commit bc47f9084d0a97a5559c2ac8083b1e429a0b0b5b

Authored by changpengfei
1 parent 4e13212e51
Exists in master

病例ID字段修改

Showing 2 changed files with 4 additions and 1 deletions

talkonlineweb/src/main/java/com/lyms/talkonlineweb/controller/PatientController.java View file @ bc47f90
... ... @@ -75,7 +75,6 @@
75 75 public BaseResponse savePatient(@Validated LymsPatient patient, BindingResult result, LymsPcase pcase, String illness){
76 76 BaseResponse baseResponse=new BaseResponse();
77 77 log.info(">>>>>>>>>>>>>>>登记病例");
78   - log.info(">>>>>>>>>>>>>>>登记病例");
79 78 baseResponse.setErrormsg("");
80 79 LymsPatient patient2=lymsPatientService.getOne(Wrappers.query(patient).eq("idno",patient.getIdno()));
81 80 if(patient2==null){
talkonlineweb/src/main/java/com/lyms/talkonlineweb/domain/PatientInfo.java View file @ bc47f90
... ... @@ -125,6 +125,10 @@
125 125 @TableField(value = "iname")
126 126 private String iname;
127 127  
  128 + @TableField(value = "ilid")//疾病行ID
  129 + private Integer ilid;
  130 +
  131 +
128 132 @TableField(exist = false)
129 133 private static final long serialVersionUID = 1L;
130 134