소스 검색

Merge branch 'dev' of chenweida/patient-co-management into dev

chenweida 8 년 전
부모
커밋
badc119eaf
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      patient-co-figure/src/main/java/com/yihu/figure/dao/patient/PatientInfoDao.java

+ 1 - 1
patient-co-figure/src/main/java/com/yihu/figure/dao/patient/PatientInfoDao.java

@ -16,6 +16,6 @@ public interface PatientInfoDao extends PagingAndSortingRepository<PatientInfo,
    @Query("from PatientInfo p ")
    List<PatientInfo> findAllPatient();
    @Query("from PatientInfo p where (p.code='test1' or p.code='test2'or p.code='test3') ")
    @Query("from PatientInfo p where (p.code='test1' or p.code='test2'or p.code='test3') order by p.id asc")
    List<PatientInfo> findByHasCode();
}