|
|
@@ -1,13 +1,13 @@
|
|
|
package com.jpsoft.employment.modules.job.dao;
|
|
|
|
|
|
import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
|
|
|
-import com.jpsoft.employment.modules.job.entity.ResumeVO;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
import org.springframework.stereotype.Repository;
|
|
|
-import com.jpsoft.employment.modules.job.entity.RecruitmentCollection;
|
|
|
-import java.util.Map;
|
|
|
+
|
|
|
import com.jpsoft.employment.modules.common.dto.Sort;
|
|
|
-import org.apache.ibatis.annotations.Param;
|
|
|
+import com.jpsoft.employment.modules.job.entity.RecruitmentCollection;
|
|
|
|
|
|
@Repository
|
|
|
public interface RecruitmentCollectionDAO {
|
|
|
@@ -33,4 +33,9 @@ public interface RecruitmentCollectionDAO {
|
|
|
* @return
|
|
|
*/
|
|
|
List<Map<String,Object>> pagedLoadAllResumes(Map<String, Object> searchParams, List<Sort> sortList);
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 招聘方:收藏的简历,取消收藏
|
|
|
+ */
|
|
|
+ int updateCancelCollect(String resumeId);
|
|
|
}
|