|
@@ -120,9 +120,6 @@ public class ReportController {
|
|
//累计岗位数量
|
|
//累计岗位数量
|
|
Integer totalRecruitStatusNum = recruitInformationInfoService.dailyReportList(searchParams1);
|
|
Integer totalRecruitStatusNum = recruitInformationInfoService.dailyReportList(searchParams1);
|
|
|
|
|
|
- //岗位需求人数
|
|
|
|
- Integer jobRequirementNum = recruitInformationInfoService.sumJobRequirementNum(searchParams1);
|
|
|
|
-
|
|
|
|
//累计岗位需求人数
|
|
//累计岗位需求人数
|
|
Integer totalJobRequirementNum = recruitInformationInfoService.sumJobRequirementNum(searchParams1);
|
|
Integer totalJobRequirementNum = recruitInformationInfoService.sumJobRequirementNum(searchParams1);
|
|
|
|
|
|
@@ -136,6 +133,11 @@ public class ReportController {
|
|
searchParams1.put("status", "1");
|
|
searchParams1.put("status", "1");
|
|
searchParams1.put("isOnline", true);
|
|
searchParams1.put("isOnline", true);
|
|
searchParams1.put("delFlag", false);
|
|
searchParams1.put("delFlag", false);
|
|
|
|
+
|
|
|
|
+ //岗位需求人数
|
|
|
|
+ Integer jobRequirementNum = recruitInformationInfoService.sumJobRequirementNum(searchParams1);
|
|
|
|
+
|
|
|
|
+
|
|
Integer totalRecruitNum = recruitInformationInfoService.dailyReportList(searchParams1);
|
|
Integer totalRecruitNum = recruitInformationInfoService.dailyReportList(searchParams1);
|
|
|
|
|
|
//今日报名人数
|
|
//今日报名人数
|
|
@@ -171,6 +173,8 @@ public class ReportController {
|
|
|
|
|
|
map.put("jobRequirementNum", jobRequirementNum);
|
|
map.put("jobRequirementNum", jobRequirementNum);
|
|
|
|
|
|
|
|
+ map.put("totalJobRequirementNum", totalJobRequirementNum);
|
|
|
|
+
|
|
mapList.add(map);
|
|
mapList.add(map);
|
|
|
|
|
|
if (exportFlag) {
|
|
if (exportFlag) {
|
|
@@ -202,8 +206,8 @@ public class ReportController {
|
|
//表头
|
|
//表头
|
|
Row rowTitle = sheet.createRow(0);
|
|
Row rowTitle = sheet.createRow(0);
|
|
|
|
|
|
- String[] titles = new String[]{"序号", "新增登录人数", "累计登录人数", "今日注册人数", "新增求职登记人数", "累计求职登记人数",
|
|
|
|
- "新增线上认证企业数量", "累计认证企业数量","新增岗位发布数量","实时发布岗位数","累计发布岗位数","岗位需求人数","今日报名人数"};
|
|
|
|
|
|
+ String[] titles = new String[]{"序号", "新增登录人数", "累计登录人数", "今日注册人数","累计注册人数", "新增求职登记人数", "累计求职登记人数", "累计简历数",
|
|
|
|
+ "新增线上认证企业数量", "累计认证企业数量","新增岗位发布数量","实时发布岗位数","累计发布岗位数","岗位需求人数","累计岗位需求人数","今日报名人数"};
|
|
|
|
|
|
for (int i = 0; i < titles.length; i++) {
|
|
for (int i = 0; i < titles.length; i++) {
|
|
Cell cell = rowTitle.createCell(i);
|
|
Cell cell = rowTitle.createCell(i);
|
|
@@ -220,14 +224,17 @@ public class ReportController {
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("loginNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("loginNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("totalLoginNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("totalLoginNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("dailyPersonRegNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("dailyPersonRegNum"), ""));
|
|
|
|
+ row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("totalPersonRegNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("personNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("personNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("totalPersonNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("totalPersonNum"), ""));
|
|
|
|
+ row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("totalJobInformation"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("enterpriseNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("enterpriseNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("totalEnterpriseNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("totalEnterpriseNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("recruitNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("recruitNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("totalRecruitNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("totalRecruitNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("totalRecruitStatusNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("totalRecruitStatusNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("jobRequirementNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("jobRequirementNum"), ""));
|
|
|
|
+ row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("totalJobRequirementNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("jobInformationNum"), ""));
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.employment.modules.common.utils.StringUtils.strValue(map.get("jobInformationNum"), ""));
|
|
}
|
|
}
|
|
|
|
|