|
|
@@ -5,6 +5,7 @@ import java.util.Map;
|
|
|
import com.jpsoft.employment.modules.job.entity.Recruitment;
|
|
|
import com.github.pagehelper.Page;
|
|
|
import com.jpsoft.employment.modules.common.dto.Sort;
|
|
|
+import com.jpsoft.employment.modules.job.entity.RecruitmentVO;
|
|
|
|
|
|
public interface RecruitmentService {
|
|
|
Recruitment get(String id);
|
|
|
@@ -15,4 +16,22 @@ public interface RecruitmentService {
|
|
|
List<Recruitment> list();
|
|
|
Page<Recruitment> pageSearch(Map<String, Object> searchParams, int pageNum, int pageSize, boolean count, List<Sort> sortList);
|
|
|
Page<Map> foundPageList(Map<String, Object> searchParams, int pageNum, int pageSize, boolean count, List<Sort> sortList);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 招聘方职位管理
|
|
|
+ * @param searchParams
|
|
|
+ * @param pageNum
|
|
|
+ * @param pageSize
|
|
|
+ * @param count
|
|
|
+ * @param sortList
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ Page<RecruitmentVO> loadForRecruiter(Map<String, Object> searchParams, int pageNum, int pageSize, boolean count, List<Sort> sortList);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 统计hr发布的招聘数量、浏览量(不包含已撤销的(已关闭的))
|
|
|
+ * @param hrId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ Map<String,Object> rptMyRecruitmentCount(String hrId);
|
|
|
}
|