|
@@ -2,18 +2,18 @@ package com.jpsoft.employment.modules.job.service.impl;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
import java.util.Map;
|
|
|
-import java.util.UUID;
|
|
|
|
|
|
|
+
|
|
|
import javax.annotation.Resource;
|
|
import javax.annotation.Resource;
|
|
|
|
|
|
|
|
-import com.jpsoft.employment.modules.job.entity.ResumeVO;
|
|
|
|
|
import org.springframework.stereotype.Component;
|
|
import org.springframework.stereotype.Component;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
+
|
|
|
|
|
+import com.github.pagehelper.Page;
|
|
|
|
|
+import com.github.pagehelper.PageHelper;
|
|
|
|
|
+import com.jpsoft.employment.modules.common.dto.Sort;
|
|
|
import com.jpsoft.employment.modules.job.dao.RecruitmentCollectionDAO;
|
|
import com.jpsoft.employment.modules.job.dao.RecruitmentCollectionDAO;
|
|
|
import com.jpsoft.employment.modules.job.entity.RecruitmentCollection;
|
|
import com.jpsoft.employment.modules.job.entity.RecruitmentCollection;
|
|
|
import com.jpsoft.employment.modules.job.service.RecruitmentCollectionService;
|
|
import com.jpsoft.employment.modules.job.service.RecruitmentCollectionService;
|
|
|
-import com.github.pagehelper.Page;
|
|
|
|
|
-import com.jpsoft.employment.modules.common.dto.Sort;
|
|
|
|
|
-import com.github.pagehelper.PageHelper;
|
|
|
|
|
|
|
|
|
|
@Transactional
|
|
@Transactional
|
|
|
@Component(value="recruitmentCollectionService")
|
|
@Component(value="recruitmentCollectionService")
|
|
@@ -87,4 +87,10 @@ public class RecruitmentCollectionServiceImpl implements RecruitmentCollectionSe
|
|
|
|
|
|
|
|
return page;
|
|
return page;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public boolean updateCancelCollect(String resumeId) {
|
|
|
|
|
+ int num=recruitmentCollectionDAO.updateCancelCollect(resumeId);
|
|
|
|
|
+ return num>0;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|