二条
authored
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package cn.dnect.company.repository;
import cn.dnect.company.entity.Company;
import org.springframework.data.repository.PagingAndSortingRepository;
/**
* Created with IntelliJ IDEA.
* Date: 2019/2/12
* Time: 15:05
*
* @author: 二条
* Description:
*/
public interface CompanyRepository extends PagingAndSortingRepository<Company, Long> {
}
|