|
@ -171,5 +171,5 @@ public interface ConsultTeamDao extends PagingAndSortingRepository<ConsultTeam,
|
|
|
@Query("select a from ConsultTeam a, ConsultTeamDoctor b where a.consult = b.consult and a.type=6 and b.to = ?1 and a.symptoms like ?2 and a.status = ?3 and a.del = '1' and b.del = '1'")
|
|
|
Page<ConsultTeam> findFamousDoctorDoingList(String uid,String title,Integer type, Pageable pageRequest);
|
|
|
@Query("select a from ConsultTeam a where a.type=?3 and a.del = '1' and a.patient=?1 and a.doctor=?2 and a.status=0 ")
|
|
|
ConsultTeam findByParientCodeAndSignTypeAndDoctor(String patientCode, String doctor, String s);
|
|
|
ConsultTeam findByParientCodeAndSignTypeAndDoctor(String patientCode, String doctor, int s);
|
|
|
}
|