- package com.yihu.figure.dao;
- import com.yihu.figure.model.PatientInfo;
- import org.springframework.data.repository.PagingAndSortingRepository;
- /**
- * Created by yeshijie on 2017/3/6.
- */
- public interface PatientInfoDao extends PagingAndSortingRepository<PatientInfo, Long> {
- }
|