package thyyxxk.webserver.dao.his.search; import com.baomidou.mybatisplus.core.metadata.IPage; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import thyyxxk.webserver.entity.dictionary.CodeName; import java.util.List; @Mapper public interface SearchDao { @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 searchPhysician(IPage iPage, String method, String content); @Select("select distinct rtrim(yb_code) as code, rtrim(yb_name) as name from zd_icd_code_new where ${method} like #{content} and del_flag=0") IPage searchSiDiagnose(IPage iPage, String method, String content); @Select("select rtrim(yb_code) as code, rtrim(yb_name) as name from zd_icd9_cm3 where ${method} like #{content} and del_flag=0") IPage searchSurgeries(IPage iPage, String method, String content); @Select("select distinct rtrim(code) as code, rtrim(name) as name from zd_icd_code_new where ${method} like #{content} and del_flag=0") IPage searchIcd10Diagnose(IPage iPage, String method, String content); @Select("select distinct new_code as code,new_name as name from ${tableName} where new_name like #{content}") IPage selectSlwSpcDiag(IPage iPage, String content, String tableName); @Select("select distinct code,name from t_zd_injury_icd where ${method} like #{content}") IPage searchInjurydiag(IPage iPage, String method, String content); @Select("SELECT RTRIM(code) as code,rtrim(name) name from ${table} where " + "isnull(del_flag,0)!=1 and ${method} like #{content}") IPage searchMedicalTechnology(IPage iPage, String method, String content, String table); }