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