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