|
@ -58,8 +58,8 @@ public interface DoctorTeamGuidanceTemplateDao extends PagingAndSortingRepositor
|
|
|
|
|
|
// 根据模板文章标题模糊搜索团队指导模板
|
|
|
@Query("SELECT b FROM DoctorTeamGuidanceDetail a, DoctorTeamGuidanceTemplate b WHERE a.code = b.teamTemplateCode " +
|
|
|
" AND b.del = 1 AND b.creater = ?1 AND b.teamId = ?2 AND b.title LIKE ?3 order by b.useTimes desc ,b.createTime desc ")
|
|
|
List<DoctorTeamGuidanceTemplate> countTeamListByTile(String doctor, int teamId, String title);
|
|
|
" AND b.del = 1 AND b.teamId = ?1 AND b.title LIKE ?2 order by b.useTimes desc ,b.createTime desc ")
|
|
|
List<DoctorTeamGuidanceTemplate> countTeamListByTile(int teamId, String title);
|
|
|
|
|
|
// 根据模板文章标题模糊搜索团队指导模板
|
|
|
@Query("SELECT b FROM DoctorTeamGuidanceDetail a, DoctorTeamGuidanceTemplate b WHERE a.code = b.teamTemplateCode " +
|