RehabilitationDetailAppointmentDao.java 505 B

12345678910111213
  1. package com.yihu.jw.rehabilitation;
  2. import com.yihu.jw.entity.specialist.rehabilitation.RehabilitationDetailAppointmentDO;
  3. import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
  4. import org.springframework.data.repository.PagingAndSortingRepository;
  5. /**
  6. * Created by ysj on 2020/7/10.
  7. */
  8. public interface RehabilitationDetailAppointmentDao extends PagingAndSortingRepository<RehabilitationDetailAppointmentDO, String>,JpaSpecificationExecutor<RehabilitationDetailAppointmentDO> {
  9. }