소스 검색

搜索医生护士时增加返回医保赋码

lighter 2 년 전
부모
커밋
05ca10a0fa
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/thyyxxk/webserver/dao/his/search/SearchDao.java

+ 1 - 1
src/main/java/thyyxxk/webserver/dao/his/search/SearchDao.java

@@ -9,7 +9,7 @@ import thyyxxk.webserver.entity.dictionary.CodeName;
 
 @Mapper
 public interface SearchDao {
-    @Select("select rtrim(code) as code,rtrim(name) name," +
+    @Select("select rtrim(code) as code,rtrim(name) as name,rtrim(yb_code) as ybCode, " +
             "deptName=(select rtrim(d.name) from zd_unit_code d where d.code=dept_code) " +
             "from a_employee_mi where isnull(del_flag,0)!=1 and ${method} like #{content}")
     IPage<CodeName> searchPhysician(IPage<CodeName> iPage, @Param("method") String method, @Param("content") String content);