1234567891011121314151617181920212223242526272829303132 |
- package com.jtgh.qlyg.service;
- import java.util.List;
- import org.springframework.data.domain.Page;
- import org.springframework.data.domain.Pageable;
- import org.springframework.data.jpa.domain.Specification;
- import com.jtgh.qlyg.entity.SupinfoEntity;
- /**
- * 权力阳光督察督办基本信息Service
- *
- * @author liangz
- *
- */
- public interface SupinfoService {
- /**
- * 分页查询所有记录
- *
- * @param spec
- * @param page
- * @return
- */
- public Page<SupinfoEntity> findAll(Specification<SupinfoEntity> spec,
- Pageable page);
- public SupinfoEntity findOne(String no);
- public List<SupinfoEntity> findAll(Specification<SupinfoEntity> spec);
- }
|