|
|
@@ -2,12 +2,12 @@ package com.jpsoft.employment.modules.job.dao;
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
+import com.jpsoft.employment.modules.job.entity.RecruitmentVO;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
import com.jpsoft.employment.modules.job.entity.Recruitment;
|
|
|
import java.util.Map;
|
|
|
import com.jpsoft.employment.modules.common.dto.Sort;
|
|
|
-import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
@Repository
|
|
|
public interface RecruitmentDAO {
|
|
|
@@ -19,4 +19,19 @@ public interface RecruitmentDAO {
|
|
|
List<Recruitment> list();
|
|
|
List<Recruitment> search(@Param("searchParams") Map<String,Object> searchParams, @Param("sortList")List<Sort> sortList);
|
|
|
List<Map> foundPageList(@Param("searchParams") Map<String,Object> searchParams, @Param("sortList")List<Sort> sortList);
|
|
|
+ /**
|
|
|
+ * 招聘方职位管理
|
|
|
+ * @param searchParams
|
|
|
+ * @param sortList
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ List<RecruitmentVO> loadForRecruiter(Map<String, Object> searchParams, List<Sort> sortList);
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 统计hr发布的招聘数量、浏览量(不包含已撤销的(已关闭的))
|
|
|
+ * @param hrId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ Map<String,Object> rptMyRecruitmentCount(String hrId);
|
|
|
}
|