• 高校就业管理系统设计与实现


    作者主页:编程指南针

    作者简介:Java领域优质创作者、CSDN博客专家 、掘金特邀作者、多年架构师设计经验、腾讯课堂常驻讲师

    主要内容:Java项目、毕业设计、简历模板、学习资料、面试题库、技术互助

    文末获取源码 

    一,项目简介

    在如今社会上,关于信息上面的处理,没有任何一个企业或者个人会忽视,如何让信息急速传递,并且归档储存查询,采用之前的纸张记录模式已经不符合当前使用要求了。所以,对高校就业信息管理的提升,也为了对高校就业信息进行更好的维护,高校就业管理系统的出现就变得水到渠成不可缺少。通过对高校就业管理系统的开发,不仅仅可以学以致用,让学到的知识变成成果出现,也强化了知识记忆,扩大了知识储备,是提升自我的一种很好的方法。通过具体的开发,对整个软件开发的过程熟练掌握,不论是前期的设计,还是后续的编码测试,都有了很深刻的认知。

    高校就业管理系统通过MySQL数据库与Eclipse工具进行开发,高校就业管理系统能够实现招聘信息管理,简历管理,邀请面试管理,简历投递管理,用户管理,公司管理等功能。

    通过高校就业管理系统对相关信息的处理,让信息处理变的更加的系统,更加的规范,这是一个必然的结果。已经处理好的信息,不管是用来查找,还是分析,在效率上都会成倍的提高,让计算机变得更加符合生产需要,变成人们不可缺少的一种信息处理工具,实现了绿色办公,节省社会资源,为环境保护也做了力所能及的贡献。

    二,环境介绍

    语言环境:Java:  jdk1.8

    数据库:Mysql: mysql5.7

    应用服务器:Tomcat:  tomcat8.5.31

    开发工具:IDEA或eclipse

    后台开发技术:Springboot+SSM框架

    前台开发技术:Bootstrap+Jquery+Ajax

    三,系统展示

    3.1后台功能详细设计

    3.3.1 公司管理

    管理员进入如图4-1所示的公司管理界面之后,管理员点击信息显示栏中最右侧的修改,删除,重置密码按钮可依次完成公司信息的修改,删除,密码重置等操作,管理员也能在当前界面查询公司信息,添加公司信息等。

    图3-1 公司管理界面

    公司管理的核心代码如下:

    表3-1 公司管理分页查询

    /**
    *
    后端列表
    */
    @RequestMapping("/page")
    public R page(@RequestParam Map params, HttpServletRequest request){
       
    logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
        String role = String.valueOf(request.getSession().getAttribute(
    "role"));
       
    if(StringUtil.isEmpty(role))
            
    return R.error(511,"权限为空");
       
    else if("用户".equals(role))
            params.put(
    "yonghuId",request.getSession().getAttribute("userId"));
       
    else if("公司".equals(role))
            params.put(
    "gongsiId",request.getSession().getAttribute("userId"));
        params.put(
    "gongsiDeleteStart",1);params.put("gongsiDeleteEnd",1);
       
    if(params.get("orderBy")==null || params.get("orderBy")==""){
            params.put(
    "orderBy","id");
        }
        PageUtils page =
    gongsiService.queryPage(params);

       
    //字典表数据转换
        List list =(List)page.getList();
       
    for(GongsiView c:list){
           
    //修改对应字典表字段
            dictionaryService.dictionaryConvert(c, request);
        }
       
    return R.ok().put("data", page);
    }

    3.3.2 用户管理

    管理员进入如图4-2所示的用户管理界面之后,管理员点击信息显示栏中最右侧的修改,删除按钮可依次完成用户信息的修改,删除等操作,管理员在当前界面也能添加用户,查询用户。

    图3-2 用户管理界面

    用户管理模块的核心代码如下:

    表3-2 用户管理分页查询


    @RequestMapping("/page")
    public R page(@RequestParam Map params, HttpServletRequest request){
       
    logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
        String role = String.valueOf(request.getSession().getAttribute(
    "role"));
       
    if(StringUtil.isEmpty(role))
           
    return R.error(511,"权限为空");
       
    else if("用户".equals(role))
            params.put(
    "yonghuId",request.getSession().getAttribute("userId"));
       
    else if("公司".equals(role))
            params.put(
    "gongsiId",request.getSession().getAttribute("userId"));
       
    if(params.get("orderBy")==null || params.get("orderBy")==""){
            params.put(
    "orderBy","id");
        }
        PageUtils page =
    yonghuService.queryPage(params);

       
    //字典表数据转换
        List list =(List)page.getList();
       
    for(YonghuView c:list){
           
    //修改对应字典表字段
            dictionaryService.dictionaryConvert(c, request);
        }
       
    return R.ok().put("data", page);
    }

    3.3.3 院系类型管理

    管理员进入如图4-3所示的院系类型管理界面之后,管理员查看院系类型信息,对院系类型信息进行查询,更改,删除等。

    图3-3 院系类型管理界面

    院系类型管理和招聘岗位功能实现的逻辑基本上都比较相似,此处展示一下院系类型管理的核心代码作为基础业务数据的管理代表。

    表3-3 院系类型管理代码

    /**
    *
    后端列表
    */
    @RequestMapping("/page")
    @IgnoreAuth
    public R page(@RequestParam Map params, HttpServletRequest request){
       
    logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
       
    if(params.get("orderBy")==null || params.get("orderBy")==""){
            params.put(
    "orderBy","id");
        }
        PageUtils page =
    dictionaryService.queryPage(params);

       
    //字典表数据转换
        List list =(List)page.getList();
       
    for(DictionaryView c:list){
           
    //修改对应字典表字段
            dictionaryService.dictionaryConvert(c, request);
        }
       
    return R.ok().put("data", page);
    }

    3.3.4 招聘岗位管理

    管理员进入如图4-4所示的招聘岗位管理界面之后,管理员点击信息显示栏中最右侧的修改,删除按钮可依次完成招聘岗位信息的修改,删除操作,管理员在本界面也能查询招聘岗位信息,添加招聘岗位信息等。

    图3-4 招聘岗位管理界面

    3.3.5 招聘信息管理

    公司进入如图4-5所示的招聘信息管理界面之后,公司点击信息显示栏中最右侧的修改,删除,下架,上架按钮可依次完成招聘信息的修改,删除,下架,上架等操作。招聘信息包括联系人,招聘岗位,招聘人数,薪资待遇等信息。

    图3-5 招聘信息管理界面

    3.3.6 简历投递查看

    公司进入如图4-6所示的简历投递查看界面之后,公司点击信息显示栏右侧的详情按钮即可对简历投递信息进行线上查看。

    图3-6 简历投递查看界面

    简历投递查看功能的核心代码如下:

    表3-4 简历投递查看管理代码


    @RequestMapping("/page")
    public R page(@RequestParam Map params, HttpServletRequest request){
       
    logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
        String role = String.valueOf(request.getSession().getAttribute(
    "role"));
       
    if(StringUtil.isEmpty(role))
           
    return R.error(511,"权限为空");
       
    else if("用户".equals(role))
            params.put(
    "yonghuId",request.getSession().getAttribute("userId"));
       
    else if("公司".equals(role))
            params.put(
    "gongsiId",request.getSession().getAttribute("userId"));
       
    if(params.get("orderBy")==null || params.get("orderBy")==""){
            params.put(
    "orderBy","id");
        }
        PageUtils page =
    jianliService.queryPage(params);

       
    //字典表数据转换
        List list =(List)page.getList();
       
    for(JianliView c:list){
           
    //修改对应字典表字段
            dictionaryService.dictionaryConvert(c, request);
        }
       
    return R.ok().put("data", page);
    }

    四,核心代码展示

    1. package com.controller;
    2. import java.io.File;
    3. import java.io.FileNotFoundException;
    4. import java.io.IOException;
    5. import java.text.SimpleDateFormat;
    6. import java.util.*;
    7. import javax.servlet.http.HttpServletRequest;
    8. import com.alibaba.fastjson.JSON;
    9. import com.utils.StringUtil;
    10. import org.apache.commons.lang3.StringUtils;
    11. import org.json.JSONObject;
    12. import org.slf4j.Logger;
    13. import org.slf4j.LoggerFactory;
    14. import org.springframework.beans.factory.annotation.Autowired;
    15. import org.springframework.util.ResourceUtils;
    16. import org.springframework.web.bind.annotation.PathVariable;
    17. import org.springframework.web.bind.annotation.RequestBody;
    18. import org.springframework.web.bind.annotation.RequestMapping;
    19. import org.springframework.web.bind.annotation.RequestParam;
    20. import org.springframework.web.bind.annotation.RestController;
    21. import com.annotation.IgnoreAuth;
    22. import com.baidu.aip.face.AipFace;
    23. import com.baidu.aip.face.MatchRequest;
    24. import com.baidu.aip.util.Base64Util;
    25. import com.baomidou.mybatisplus.mapper.EntityWrapper;
    26. import com.baomidou.mybatisplus.mapper.Wrapper;
    27. import com.entity.ConfigEntity;
    28. import com.service.CommonService;
    29. import com.service.ConfigService;
    30. import com.utils.BaiduUtil;
    31. import com.utils.FileUtil;
    32. import com.utils.R;
    33. /**
    34. * 通用接口
    35. */
    36. @RestController
    37. public class CommonController{
    38. private static final Logger logger = LoggerFactory.getLogger(CommonController.class);
    39. @Autowired
    40. private CommonService commonService;
    41. @Autowired
    42. private ConfigService configService;
    43. private static AipFace client = null;
    44. private static String BAIDU_DITU_AK = null;
    45. @RequestMapping("/location")
    46. public R location(String lng,String lat) {
    47. if(BAIDU_DITU_AK==null) {
    48. BAIDU_DITU_AK = configService.selectOne(new EntityWrapper().eq("name", "baidu_ditu_ak")).getValue();
    49. if(BAIDU_DITU_AK==null) {
    50. return R.error("请在配置管理中正确配置baidu_ditu_ak");
    51. }
    52. }
    53. Map map = BaiduUtil.getCityByLonLat(BAIDU_DITU_AK, lng, lat);
    54. return R.ok().put("data", map);
    55. }
    56. /**
    57. * 人脸比对
    58. *
    59. * @param face1 人脸1
    60. * @param face2 人脸2
    61. * @return
    62. */
    63. @RequestMapping("/matchFace")
    64. public R matchFace(String face1, String face2, HttpServletRequest request) {
    65. if(client==null) {
    66. /*String AppID = configService.selectOne(new EntityWrapper().eq("name", "AppID")).getValue();*/
    67. String APIKey = configService.selectOne(new EntityWrapper().eq("name", "APIKey")).getValue();
    68. String SecretKey = configService.selectOne(new EntityWrapper().eq("name", "SecretKey")).getValue();
    69. String token = BaiduUtil.getAuth(APIKey, SecretKey);
    70. if(token==null) {
    71. return R.error("请在配置管理中正确配置APIKey和SecretKey");
    72. }
    73. client = new AipFace(null, APIKey, SecretKey);
    74. client.setConnectionTimeoutInMillis(2000);
    75. client.setSocketTimeoutInMillis(60000);
    76. }
    77. JSONObject res = null;
    78. try {
    79. File file1 = new File(request.getSession().getServletContext().getRealPath("/upload")+"/"+face1);
    80. File file2 = new File(request.getSession().getServletContext().getRealPath("/upload")+"/"+face2);
    81. String img1 = Base64Util.encode(FileUtil.FileToByte(file1));
    82. String img2 = Base64Util.encode(FileUtil.FileToByte(file2));
    83. MatchRequest req1 = new MatchRequest(img1, "BASE64");
    84. MatchRequest req2 = new MatchRequest(img2, "BASE64");
    85. ArrayList requests = new ArrayList();
    86. requests.add(req1);
    87. requests.add(req2);
    88. res = client.match(requests);
    89. System.out.println(res.get("result"));
    90. } catch (FileNotFoundException e) {
    91. e.printStackTrace();
    92. return R.error("文件不存在");
    93. } catch (IOException e) {
    94. e.printStackTrace();
    95. }
    96. return R.ok().put("data", com.alibaba.fastjson.JSONObject.parse(res.get("result").toString()));
    97. }
    98. /**
    99. * 获取table表中的column列表(联动接口)
    100. * @return
    101. */
    102. @RequestMapping("/option/{tableName}/{columnName}")
    103. @IgnoreAuth
    104. public R getOption(@PathVariable("tableName") String tableName, @PathVariable("columnName") String columnName,String level,String parent) {
    105. Map params = new HashMap();
    106. params.put("table", tableName);
    107. params.put("column", columnName);
    108. if(StringUtils.isNotBlank(level)) {
    109. params.put("level", level);
    110. }
    111. if(StringUtils.isNotBlank(parent)) {
    112. params.put("parent", parent);
    113. }
    114. List data = commonService.getOption(params);
    115. return R.ok().put("data", data);
    116. }
    117. /**
    118. * 根据table中的column获取单条记录
    119. * @return
    120. */
    121. @RequestMapping("/follow/{tableName}/{columnName}")
    122. @IgnoreAuth
    123. public R getFollowByOption(@PathVariable("tableName") String tableName, @PathVariable("columnName") String columnName, @RequestParam String columnValue) {
    124. Map params = new HashMap();
    125. params.put("table", tableName);
    126. params.put("column", columnName);
    127. params.put("columnValue", columnValue);
    128. Map result = commonService.getFollowByOption(params);
    129. return R.ok().put("data", result);
    130. }
    131. /**
    132. * 修改table表的sfsh状态
    133. * @param map
    134. * @return
    135. */
    136. @RequestMapping("/sh/{tableName}")
    137. public R sh(@PathVariable("tableName") String tableName, @RequestBody Map map) {
    138. map.put("table", tableName);
    139. commonService.sh(map);
    140. return R.ok();
    141. }
    142. /**
    143. * 获取需要提醒的记录数
    144. * @param tableName
    145. * @param columnName
    146. * @param type 1:数字 2:日期
    147. * @param map
    148. * @return
    149. */
    150. @RequestMapping("/remind/{tableName}/{columnName}/{type}")
    151. @IgnoreAuth
    152. public R remindCount(@PathVariable("tableName") String tableName, @PathVariable("columnName") String columnName,
    153. @PathVariable("type") String type,@RequestParam Map map) {
    154. map.put("table", tableName);
    155. map.put("column", columnName);
    156. map.put("type", type);
    157. if(type.equals("2")) {
    158. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
    159. Calendar c = Calendar.getInstance();
    160. Date remindStartDate = null;
    161. Date remindEndDate = null;
    162. if(map.get("remindstart")!=null) {
    163. Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
    164. c.setTime(new Date());
    165. c.add(Calendar.DAY_OF_MONTH,remindStart);
    166. remindStartDate = c.getTime();
    167. map.put("remindstart", sdf.format(remindStartDate));
    168. }
    169. if(map.get("remindend")!=null) {
    170. Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
    171. c.setTime(new Date());
    172. c.add(Calendar.DAY_OF_MONTH,remindEnd);
    173. remindEndDate = c.getTime();
    174. map.put("remindend", sdf.format(remindEndDate));
    175. }
    176. }
    177. int count = commonService.remindCount(map);
    178. return R.ok().put("count", count);
    179. }
    180. /**
    181. * 圖表统计
    182. */
    183. @IgnoreAuth
    184. @RequestMapping("/group/{tableName}")
    185. public R group1(@PathVariable("tableName") String tableName, @RequestParam Map params) {
    186. params.put("table1", tableName);
    187. List> result = commonService.chartBoth(params);
    188. return R.ok().put("data", result);
    189. }
    190. /**
    191. * 单列求和
    192. */
    193. @RequestMapping("/cal/{tableName}/{columnName}")
    194. @IgnoreAuth
    195. public R cal(@PathVariable("tableName") String tableName, @PathVariable("columnName") String columnName) {
    196. Map params = new HashMap();
    197. params.put("table", tableName);
    198. params.put("column", columnName);
    199. Map result = commonService.selectCal(params);
    200. return R.ok().put("data", result);
    201. }
    202. /**
    203. * 分组统计
    204. */
    205. @RequestMapping("/group/{tableName}/{columnName}")
    206. @IgnoreAuth
    207. public R group(@PathVariable("tableName") String tableName, @PathVariable("columnName") String columnName) {
    208. Map params = new HashMap();
    209. params.put("table", tableName);
    210. params.put("column", columnName);
    211. List> result = commonService.selectGroup(params);
    212. return R.ok().put("data", result);
    213. }
    214. /**
    215. * (按值统计)
    216. */
    217. @RequestMapping("/value/{tableName}/{xColumnName}/{yColumnName}")
    218. @IgnoreAuth
    219. public R value(@PathVariable("tableName") String tableName, @PathVariable("yColumnName") String yColumnName, @PathVariable("xColumnName") String xColumnName) {
    220. Map params = new HashMap();
    221. params.put("table", tableName);
    222. params.put("xColumn", xColumnName);
    223. params.put("yColumn", yColumnName);
    224. List> result = commonService.selectValue(params);
    225. return R.ok().put("data", result);
    226. }
    227. /**
    228. * 下面为新加的
    229. *
    230. *
    231. *
    232. */
    233. /**
    234. * 查询字典表的分组求和
    235. * tableName 表名
    236. * groupColumn 分组字段
    237. * sumCloum 统计字段
    238. * @return
    239. */
    240. @RequestMapping("/newSelectGroupSum")
    241. public R newSelectGroupSum(@RequestParam Map params) {
    242. logger.debug("newSelectGroupSum:,,Controller:{},,params:{}",this.getClass().getName(),params);
    243. List> result = commonService.newSelectGroupSum(params);
    244. return R.ok().put("data", result);
    245. }
    246. /**
    247. * 查询字典表的分组统计总条数
    248. * tableName 表名
    249. * groupColumn 分组字段
    250. * @return
    251. */
    252. @RequestMapping("/newSelectGroupCount")
    253. public R newSelectGroupCount(@RequestParam Map params) {
    254. logger.debug("newSelectGroupCount:,,Controller:{},,params:{}",this.getClass().getName(),params);
    255. List> result = commonService.newSelectGroupCount(params);
    256. return R.ok().put("data", result);
    257. }
    258. /**
    259. * 当前表的日期分组求和
    260. * tableName 表名
    261. * groupColumn 分组字段
    262. * sumCloum 统计字段
    263. * dateFormatType 日期格式化类型 1:年 2:月 3:日
    264. * @return
    265. */
    266. @RequestMapping("/newSelectDateGroupSum")
    267. public R newSelectDateGroupSum(@RequestParam Map params) {
    268. logger.debug("newSelectDateGroupSum:,,Controller:{},,params:{}",this.getClass().getName(),params);
    269. String dateFormatType = String.valueOf(params.get("dateFormatType"));
    270. if("1".equals(dateFormatType)){
    271. params.put("dateFormat", "%Y");
    272. }else if("2".equals(dateFormatType)){
    273. params.put("dateFormat", "%Y-%m");
    274. }else if("3".equals(dateFormatType)){
    275. params.put("dateFormat", "%Y-%m-%d");
    276. }else{
    277. R.error("日期格式化不正确");
    278. }
    279. List> result = commonService.newSelectDateGroupSum(params);
    280. return R.ok().put("data", result);
    281. }
    282. /**
    283. *
    284. * 查询字典表的分组统计总条数
    285. * tableName 表名
    286. * groupColumn 分组字段
    287. * dateFormatType 日期格式化类型 1:年 2:月 3:日
    288. * @return
    289. */
    290. @RequestMapping("/newSelectDateGroupCount")
    291. public R newSelectDateGroupCount(@RequestParam Map params) {
    292. logger.debug("newSelectDateGroupCount:,,Controller:{},,params:{}",this.getClass().getName(),params);
    293. String dateFormatType = String.valueOf(params.get("dateFormatType"));
    294. if("1".equals(dateFormatType)){
    295. params.put("dateFormat", "%Y");
    296. }else if("2".equals(dateFormatType)){
    297. params.put("dateFormat", "%Y-%m");
    298. }else if("3".equals(dateFormatType)){
    299. params.put("dateFormat", "%Y-%m-%d");
    300. }else{
    301. R.error("日期格式化类型不正确");
    302. }
    303. List> result = commonService.newSelectDateGroupCount(params);
    304. return R.ok().put("data", result);
    305. }
    306. /**
    307. * 饼状图
    308. * -- 饼状图 查询当前表
    309. -- 查询字典表【月】
    310. -- 统计 -- 查询某个月的每个类型的订单销售数量
    311. -- 求和 -- 查询某个月的每个类型的订单销售额
    312. -- 查询某个字符串【月】
    313. -- 统计 -- 查询某个月的每个员工的订单销售数量
    314. -- 求和 -- 查询某个月的每个员工的订单销售额
    315. -- 查询时间【年】
    316. -- 统计 -- 查询每个月的订单销售数量
    317. -- 求和 -- 查询每个月的订单销售额
    318. -- 饼状图 查询级联表
    319. -- 查询字典表
    320. -- 统计 -- 查询某个月的每个类型的订单销售数量
    321. -- 求和 -- 查询某个月的每个类型的订单销售额
    322. -- 查询某个字符串
    323. -- 统计 -- 查询某个月的每个员工的订单销售数量
    324. -- 求和 -- 查询某个月的每个员工的订单销售额
    325. -- 查询时间
    326. -- 统计 -- 统计每个月的订单销售数量
    327. -- 求和 -- 查询每个月的订单销售额
    328. */
    329. /**
    330. * 柱状图
    331. -- 柱状图 查询当前表
    332. -- 某个【年,月】
    333. -- 当前表 2 级联表 1
    334. -- 统计
    335. -- 【日期,字符串,下拉框】
    336. -- 求和
    337. -- 【日期,字符串,下拉框】
    338. -- 柱状图 查询级联表
    339. -- 某个【年,月】
    340. -- 统计
    341. -- 【日期,字符串,下拉框】
    342. -- 求和
    343. -- 【日期,字符串,下拉框】
    344. */
    345. /**
    346. * 柱状图求和
    347. */
    348. @RequestMapping("/barSum")
    349. public R barSum(@RequestParam Map params) {
    350. logger.debug("barSum方法:,,Controller:{},,params:{}",this.getClass().getName(), com.alibaba.fastjson.JSONObject.toJSONString(params));
    351. Boolean isJoinTableFlag = false;//是否有级联表相关
    352. String one = "";//第一优先
    353. String two = "";//第二优先
    354. //处理thisTable和joinTable 处理内容是把json字符串转为Map并把带有,的切割为数组
    355. //当前表
    356. Map thisTable = JSON.parseObject(String.valueOf(params.get("thisTable")),Map.class);
    357. params.put("thisTable",thisTable);
    358. //级联表
    359. String joinTableString = String.valueOf(params.get("joinTable"));
    360. if(StringUtil.isNotEmpty(joinTableString)) {
    361. Map joinTable = JSON.parseObject(joinTableString, Map.class);
    362. params.put("joinTable", joinTable);
    363. isJoinTableFlag = true;
    364. }
    365. if(StringUtil.isNotEmpty(String.valueOf(thisTable.get("date")))){//当前表日期
    366. thisTable.put("date",String.valueOf(thisTable.get("date")).split(","));
    367. one = "thisDate0";
    368. }
    369. if(isJoinTableFlag){//级联表日期
    370. Map joinTable = (Map) params.get("joinTable");
    371. if(StringUtil.isNotEmpty(String.valueOf(joinTable.get("date")))){
    372. joinTable.put("date",String.valueOf(joinTable.get("date")).split(","));
    373. if(StringUtil.isEmpty(one)){
    374. one ="joinDate0";
    375. }else{
    376. if(StringUtil.isEmpty(two)){
    377. two ="joinDate0";
    378. }
    379. }
    380. }
    381. }
    382. if(StringUtil.isNotEmpty(String.valueOf(thisTable.get("string")))){//当前表字符串
    383. thisTable.put("string",String.valueOf(thisTable.get("string")).split(","));
    384. if(StringUtil.isEmpty(one)){
    385. one ="thisString0";
    386. }else{
    387. if(StringUtil.isEmpty(two)){
    388. two ="thisString0";
    389. }
    390. }
    391. }
    392. if(isJoinTableFlag){//级联表字符串
    393. Map joinTable = (Map) params.get("joinTable");
    394. if(StringUtil.isNotEmpty(String.valueOf(joinTable.get("string")))){
    395. joinTable.put("string",String.valueOf(joinTable.get("string")).split(","));
    396. if(StringUtil.isEmpty(one)){
    397. one ="joinString0";
    398. }else{
    399. if(StringUtil.isEmpty(two)){
    400. two ="joinString0";
    401. }
    402. }
    403. }
    404. }
    405. if(StringUtil.isNotEmpty(String.valueOf(thisTable.get("types")))){//当前表类型
    406. thisTable.put("types",String.valueOf(thisTable.get("types")).split(","));
    407. if(StringUtil.isEmpty(one)){
    408. one ="thisTypes0";
    409. }else{
    410. if(StringUtil.isEmpty(two)){
    411. two ="thisTypes0";
    412. }
    413. }
    414. }
    415. if(isJoinTableFlag){//级联表类型
    416. Map joinTable = (Map) params.get("joinTable");
    417. if(StringUtil.isNotEmpty(String.valueOf(joinTable.get("types")))){
    418. joinTable.put("types",String.valueOf(joinTable.get("types")).split(","));
    419. if(StringUtil.isEmpty(one)){
    420. one ="joinTypes0";
    421. }else{
    422. if(StringUtil.isEmpty(two)){
    423. two ="joinTypes0";
    424. }
    425. }
    426. }
    427. }
    428. List> result = commonService.barSum(params);
    429. List xAxis = new ArrayList<>();//报表x轴
    430. List> yAxis = new ArrayList<>();//y轴
    431. List legend = new ArrayList<>();//标题
    432. if(StringUtil.isEmpty(two)){//不包含第二列
    433. List yAxis0 = new ArrayList<>();
    434. yAxis.add(yAxis0);
    435. legend.add("数值");
    436. for(Map map :result){
    437. String oneValue = String.valueOf(map.get(one));
    438. String value = String.valueOf(map.get("value"));
    439. xAxis.add(oneValue);
    440. yAxis0.add(value);
    441. }
    442. }else{//包含第二列
    443. Map> dataMap = new LinkedHashMap<>();
    444. if(StringUtil.isNotEmpty(two)){
    445. for(Map map :result){
    446. String oneValue = String.valueOf(map.get(one));
    447. String twoValue = String.valueOf(map.get(two));
    448. String value = String.valueOf(map.get("value"));
    449. if(!legend.contains(twoValue)){
    450. legend.add(twoValue);//添加完成后 就是最全的第二列的类型
    451. }
    452. if(dataMap.containsKey(oneValue)){
    453. dataMap.get(oneValue).put(twoValue,value);
    454. }else{
    455. HashMap oneData = new HashMap<>();
    456. oneData.put(twoValue,value);
    457. dataMap.put(oneValue,oneData);
    458. }
    459. }
    460. }
    461. for(int i =0; i
    462. yAxis.add(new ArrayList());
    463. }
    464. Set keys = dataMap.keySet();
    465. for(String key:keys){
    466. xAxis.add(key);
    467. HashMap map = dataMap.get(key);
    468. for(int i =0; i
    469. List data = yAxis.get(i);
    470. if(StringUtil.isNotEmpty(map.get(legend.get(i)))){
    471. data.add(map.get(legend.get(i)));
    472. }else{
    473. data.add("0");
    474. }
    475. }
    476. }
    477. System.out.println();
    478. }
    479. Map resultMap = new HashMap<>();
    480. resultMap.put("xAxis",xAxis);
    481. resultMap.put("yAxis",yAxis);
    482. resultMap.put("legend",legend);
    483. return R.ok().put("data", resultMap);
    484. }
    485. /**
    486. * 柱状图统计
    487. */
    488. @RequestMapping("/barCount")
    489. public R barCount(@RequestParam Map params) {
    490. logger.debug("barCount方法:,,Controller:{},,params:{}",this.getClass().getName(), com.alibaba.fastjson.JSONObject.toJSONString(params));
    491. Boolean isJoinTableFlag = false;//是否有级联表相关
    492. String one = "";//第一优先
    493. String two = "";//第二优先
    494. //处理thisTable和joinTable 处理内容是把json字符串转为Map并把带有,的切割为数组
    495. //当前表
    496. Map thisTable = JSON.parseObject(String.valueOf(params.get("thisTable")),Map.class);
    497. params.put("thisTable",thisTable);
    498. //级联表
    499. String joinTableString = String.valueOf(params.get("joinTable"));
    500. if(StringUtil.isNotEmpty(joinTableString)) {
    501. Map joinTable = JSON.parseObject(joinTableString, Map.class);
    502. params.put("joinTable", joinTable);
    503. isJoinTableFlag = true;
    504. }
    505. if(StringUtil.isNotEmpty(String.valueOf(thisTable.get("date")))){//当前表日期
    506. thisTable.put("date",String.valueOf(thisTable.get("date")).split(","));
    507. one = "thisDate0";
    508. }
    509. if(isJoinTableFlag){//级联表日期
    510. Map joinTable = (Map) params.get("joinTable");
    511. if(StringUtil.isNotEmpty(String.valueOf(joinTable.get("date")))){
    512. joinTable.put("date",String.valueOf(joinTable.get("date")).split(","));
    513. if(StringUtil.isEmpty(one)){
    514. one ="joinDate0";
    515. }else{
    516. if(StringUtil.isEmpty(two)){
    517. two ="joinDate0";
    518. }
    519. }
    520. }
    521. }
    522. if(StringUtil.isNotEmpty(String.valueOf(thisTable.get("string")))){//当前表字符串
    523. thisTable.put("string",String.valueOf(thisTable.get("string")).split(","));
    524. if(StringUtil.isEmpty(one)){
    525. one ="thisString0";
    526. }else{
    527. if(StringUtil.isEmpty(two)){
    528. two ="thisString0";
    529. }
    530. }
    531. }
    532. if(isJoinTableFlag){//级联表字符串
    533. Map joinTable = (Map) params.get("joinTable");
    534. if(StringUtil.isNotEmpty(String.valueOf(joinTable.get("string")))){
    535. joinTable.put("string",String.valueOf(joinTable.get("string")).split(","));
    536. if(StringUtil.isEmpty(one)){
    537. one ="joinString0";
    538. }else{
    539. if(StringUtil.isEmpty(two)){
    540. two ="joinString0";
    541. }
    542. }
    543. }
    544. }
    545. if(StringUtil.isNotEmpty(String.valueOf(thisTable.get("types")))){//当前表类型
    546. thisTable.put("types",String.valueOf(thisTable.get("types")).split(","));
    547. if(StringUtil.isEmpty(one)){
    548. one ="thisTypes0";
    549. }else{
    550. if(StringUtil.isEmpty(two)){
    551. two ="thisTypes0";
    552. }
    553. }
    554. }
    555. if(isJoinTableFlag){//级联表类型
    556. Map joinTable = (Map) params.get("joinTable");
    557. if(StringUtil.isNotEmpty(String.valueOf(joinTable.get("types")))){
    558. joinTable.put("types",String.valueOf(joinTable.get("types")).split(","));
    559. if(StringUtil.isEmpty(one)){
    560. one ="joinTypes0";
    561. }else{
    562. if(StringUtil.isEmpty(two)){
    563. two ="joinTypes0";
    564. }
    565. }
    566. }
    567. }
    568. List> result = commonService.barCount(params);
    569. List xAxis = new ArrayList<>();//报表x轴
    570. List> yAxis = new ArrayList<>();//y轴
    571. List legend = new ArrayList<>();//标题
    572. if(StringUtil.isEmpty(two)){//不包含第二列
    573. List yAxis0 = new ArrayList<>();
    574. yAxis.add(yAxis0);
    575. legend.add("数值");
    576. for(Map map :result){
    577. String oneValue = String.valueOf(map.get(one));
    578. String value = String.valueOf(map.get("value"));
    579. xAxis.add(oneValue);
    580. yAxis0.add(value);
    581. }
    582. }else{//包含第二列
    583. Map> dataMap = new LinkedHashMap<>();
    584. if(StringUtil.isNotEmpty(two)){
    585. for(Map map :result){
    586. String oneValue = String.valueOf(map.get(one));
    587. String twoValue = String.valueOf(map.get(two));
    588. String value = String.valueOf(map.get("value"));
    589. if(!legend.contains(twoValue)){
    590. legend.add(twoValue);//添加完成后 就是最全的第二列的类型
    591. }
    592. if(dataMap.containsKey(oneValue)){
    593. dataMap.get(oneValue).put(twoValue,value);
    594. }else{
    595. HashMap oneData = new HashMap<>();
    596. oneData.put(twoValue,value);
    597. dataMap.put(oneValue,oneData);
    598. }
    599. }
    600. }
    601. for(int i =0; i
    602. yAxis.add(new ArrayList());
    603. }
    604. Set keys = dataMap.keySet();
    605. for(String key:keys){
    606. xAxis.add(key);
    607. HashMap map = dataMap.get(key);
    608. for(int i =0; i
    609. List data = yAxis.get(i);
    610. if(StringUtil.isNotEmpty(map.get(legend.get(i)))){
    611. data.add(map.get(legend.get(i)));
    612. }else{
    613. data.add("0");
    614. }
    615. }
    616. }
    617. System.out.println();
    618. }
    619. Map resultMap = new HashMap<>();
    620. resultMap.put("xAxis",xAxis);
    621. resultMap.put("yAxis",yAxis);
    622. resultMap.put("legend",legend);
    623. return R.ok().put("data", resultMap);
    624. }
    625. }

    五,项目总结

    整个高校就业管理系统的实现全部围绕高校学生的就业业务流程来进行设计,对于高校学生就业,由高校搭建一个平台,对接校内学生和校外企业,将企业的招聘需求和校内各专业学生的应聘需求有机的结合在一起,即解决了企业招聘难的问题,又解决了校内应届生就业难的难题。企业方可以登陆本系统进行招聘信息的发布,学生简历的查看,对学生进行而试邀请等等;校内学生可以在系统上发布个人简历,查阅企业信息及招聘信息,并在线投递简历等;而作为校方,是平台的管理者,可以在系统平台内对相关的企业信息,招聘信息,学生信息,简历信息等进行管理工作。整个系统功能结构完整,页面操作简洁大方,业务流程完整,用户使用体验校好。

  • 相关阅读:
    企业级C++项目那些事(1):VS&Qt相关设置
    ssm基于Html+css的音乐网站的设计与实现毕业设计源码181627
    C++,STL(补)vector底层实现、动态数组
    基于JavaSwing开发学生成绩管理系统(SQLServer数据库) 课程设计 大作业
    蓝桥杯:分巧克力
    【Python学习笔记】深拷贝和浅拷贝
    第4章 请求与响应
    【FreeRTOS-----笔记(基础)】
    【高级语言程序设计】python函数式编程(一)
    水库自动化监测系统包括哪些内容
  • 原文地址:https://blog.csdn.net/whirlwind526/article/details/126252432