|
@ -0,0 +1,11 @@
|
|
|
package com.yihu.wlyy.repository.prescription;
|
|
|
|
|
|
import com.yihu.wlyy.entity.patient.prescription.PrescriptionReviewed;
|
|
|
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
|
|
|
import org.springframework.data.repository.PagingAndSortingRepository;
|
|
|
|
|
|
/**
|
|
|
* Created by Trick on 2017/8/4.
|
|
|
*/
|
|
|
public interface PrescriptionReviewedDao extends PagingAndSortingRepository<PrescriptionReviewed, Long>, JpaSpecificationExecutor<PrescriptionReviewed> {
|
|
|
}
|