소스 검색

增加招聘方简历收藏查询记录

chenwen 4 년 전
부모
커밋
944fddbb64
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      common/src/main/java/com/jpsoft/employment/modules/job/service/RecruitmentCollectionService.java

+ 3 - 0
common/src/main/java/com/jpsoft/employment/modules/job/service/RecruitmentCollectionService.java

@@ -5,6 +5,7 @@ import java.util.Map;
 import com.jpsoft.employment.modules.job.entity.RecruitmentCollection;
 import com.github.pagehelper.Page;
 import com.jpsoft.employment.modules.common.dto.Sort;
+import com.jpsoft.employment.modules.job.entity.ResumeVO;
 
 public interface RecruitmentCollectionService {
 	RecruitmentCollection get(String id);
@@ -14,4 +15,6 @@ public interface RecruitmentCollectionService {
 	int delete(String id);
 	List<RecruitmentCollection> list();
 	Page<RecruitmentCollection> pageSearch(Map<String, Object> searchParams, int pageNum, int pageSize, boolean count, List<Sort> sortList);
+
+	Page<ResumeVO> pagedLoad(Map<String, Object> searchParams, int pageNumber, int pageSize, boolean count, List<Sort> sortList);
 }