|
@@ -16,7 +16,7 @@ public interface DictionaryDao {
|
|
|
"isnull(del_flag,0)!=1 and ${method} LIKE #{content} collate Chinese_PRC_CI_AS")
|
|
|
List<PureCodeName> searchPhysician(@Param("method") String method, @Param("content") String content);
|
|
|
|
|
|
- @Select("select rtrim(yb_code) as code, rtrim(yb_name) as name from zd_icd_code_new " +
|
|
|
+ @Select("select diagnosis_code as code,diagnosis_name as name from t_si_dl_dss_dns " +
|
|
|
"where ${method} LIKE #{content} collate Chinese_PRC_CI_AS order by weight desc")
|
|
|
List<PureCodeName> searchDiagnose(@Param("method") String method, @Param("content") String content);
|
|
|
|