Parcourir la source

医保出院诊断从下载表取

lighter il y a 3 ans
Parent
commit
9b4154915e

+ 1 - 1
src/main/java/thyyxxk/webserver/dao/his/yibao/DictionaryDao.java

@@ -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);