public String morePartTimeJobseeker() { countOFEnterprise = peopleExcavateService.getCountOFEnterprise(); if (pageInfo == null) { pageInfo = new PageInfo(); } pageInfo.setPageSize(ApplicationConstant.APPLYJOBCTR_PAGE_SIZE); ApplyJobInfoDto applyJobInfoDto = new ApplyJobInfoDto(); applyJobInfoDto.setJobTypeCode(ApplicationConstant.PART_TIME_WORK); applyJobInfoDto.setActStatus(ApplicationConstant.APPLYJOBCTR_ACTSTATUS_ACTIVE); partTimeList = applyJobService.queryApplyJobInfoList(pageInfo, applyJobInfoDto); return "morePartTimeJobSeeker"; }
public String moreAdvisor() { countOFEnterprise = peopleExcavateService.getCountOFEnterprise(); if (pageInfo == null) { pageInfo = new PageInfo(); } pageInfo.setPageSize(ApplicationConstant.APPLYJOBCTR_PAGE_SIZE); ApplyJobInfoDto applyJobInfoDto = new ApplyJobInfoDto(); applyJobInfoDto.setIsAdvisor(ApplicationConstant.COMMON_Y_EN); applyJobInfoDto.setActStatus(ApplicationConstant.APPLYJOBCTR_ACTSTATUS_ACTIVE); advisorList = applyJobService.queryApplyJobInfoList(pageInfo, applyJobInfoDto); return "moreAdvisor"; }
public String viewJobseeker4ParticularCity() { countOFEnterprise = peopleExcavateService.getCountOFEnterprise(); if (pageInfo == null) { pageInfo = new PageInfo(); } pageInfo.setPageSize(ApplicationConstant.APPLYJOBCTR_PAGE_SIZE); request = ServletActionContext.getRequest(); if (cityCode == null || cityCode == "") { cityCode = request.getParameter("cityCode"); } cityName = RegionDataUtil.getCityByCode(cityCode).getName(); ApplyJobInfoDto applyJobInfoDto = new ApplyJobInfoDto(); applyJobInfoDto.setCityCode(cityCode); applyJobInfoDto.setActStatus(ApplicationConstant.APPLYJOBCTR_ACTSTATUS_ACTIVE); applyJobInfoList = applyJobService.queryApplyJobInfoList(pageInfo, applyJobInfoDto); return "viewJobseeker4ParticularCity"; }
/** * 人才中心首页初始化 * * @return */ public String initIndex() { countOFEnterprise = peopleExcavateService.getCountOFEnterprise(); return "init"; }