Commit 3fdab5951c8b4779e4aaaf481b152a477839efbe

Authored by fangcheng
1 parent 71efc84afa
Exists in master

1

Showing 3 changed files with 3 additions and 3 deletions

parent/hospital.mac/src/main/java/com/lyms/hospital/dao/diagnose/DiagnoseInfoMapper.java View file @ 3fdab59
... ... @@ -45,7 +45,7 @@
45 45 * <li>修改人:
46 46 * <li>修改时间:
47 47 */
48   - public List<HighriskConf> getDiagnoseByDiagnoseId(Serializable id);
  48 + public List<DiagnoseConf> getDiagnoseByDiagnoseId(Serializable id);
49 49  
50 50 }
parent/hospital.mac/src/main/java/com/lyms/hospital/service/diagnose/DiagnoseInfoService.java View file @ 3fdab59
... ... @@ -110,7 +110,7 @@
110 110 * <li>修改人:
111 111 * <li>修改时间:
112 112 */
113   - public List<HighriskConf> getDiagnoseByDiagnoseId(Serializable id);
  113 + public List<DiagnoseConf> getDiagnoseByDiagnoseId(Serializable id);
114 114  
115 115 }
parent/hospital.mac/src/main/java/com/lyms/hospital/service/diagnose/impl/DiagnoseInfoServiceImpl.java View file @ 3fdab59
... ... @@ -201,7 +201,7 @@
201 201 }
202 202  
203 203 @Override
204   - public List<HighriskConf> getDiagnoseByDiagnoseId(Serializable id) {
  204 + public List<DiagnoseConf> getDiagnoseByDiagnoseId(Serializable id) {
205 205 return baseMapper.getDiagnoseByDiagnoseId(id);
206 206 }
207 207 }