PatientInfoDao.java 278 B

12345678910
  1. package com.yihu.figure.dao;
  2. import com.yihu.figure.model.PatientInfo;
  3. import org.springframework.data.repository.PagingAndSortingRepository;
  4. /**
  5. * Created by yeshijie on 2017/3/6.
  6. */
  7. public interface PatientInfoDao extends PagingAndSortingRepository<PatientInfo, Long> {
  8. }