12345678910111213 |
- package com.yihu.jw.rehabilitation;
- import com.yihu.jw.entity.specialist.rehabilitation.RehabilitationDetailAppointmentDO;
- import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
- import org.springframework.data.repository.PagingAndSortingRepository;
- /**
- * Created by ysj on 2020/7/10.
- */
- public interface RehabilitationDetailAppointmentDao extends PagingAndSortingRepository<RehabilitationDetailAppointmentDO, String>,JpaSpecificationExecutor<RehabilitationDetailAppointmentDO> {
- }
|