|
@@ -16,5 +16,16 @@ public interface RecruitmentCollectionService {
|
|
List<RecruitmentCollection> list();
|
|
List<RecruitmentCollection> list();
|
|
Page<RecruitmentCollection> pageSearch(Map<String, Object> searchParams, int pageNum, int pageSize, boolean count, List<Sort> sortList);
|
|
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);
|
|
|
|
|
|
+ Page<Map<String,Object>> pagedLoadCollectResumes(Map<String, Object> searchParams, int pageNumber, int pageSize, boolean count, List<Sort> sortList);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 招聘方:招聘主页(所有为入职的简历)
|
|
|
|
+ * @param searchParams
|
|
|
|
+ * @param pageNumber
|
|
|
|
+ * @param pageSize
|
|
|
|
+ * @param count
|
|
|
|
+ * @param sortList
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ Page<Map<String,Object>> pagedLoadAllResumes(Map<String, Object> searchParams, int pageNumber, int pageSize, boolean count, List<Sort> sortList);
|
|
}
|
|
}
|