计算机毕业设计选题推荐-大学生就业招聘管理系统-Java/Python项目实战

作者主页:IT毕设梦工厂✨
个人简介:曾从事计算机专业培训教学,擅长Java、Python、微信小程序、Golang、安卓Android等项目实战。接项目定制开发、代码讲解、答辩教学、文档编写、降重等。
☑文末获取源码☑
精彩专栏推荐⬇⬇⬇
Java项目
Python项目
安卓项目
微信小程序项目

文章目录

  • 一、前言
  • 二、开发环境
  • 三、系统界面展示
  • 四、部分代码设计
  • 五、论文参考
  • 六、系统视频
  • 结语

一、前言

大学生就业管理系统作为教育信息化建设的重要组成部分,对于提高就业管理效率、优化就业服务流程具有重要意义。随着信息技术的发展,尤其是互联网技术的广泛应用,信息化已成为社会发展的趋势。国家政策的支持和教育信息化的推进,为高校毕业生就业管理系统的设计提供了良好的政策环境和技术基础。根据CSDN博客中的描述,传统的就业管理方式存在信息不对称、效率低下等问题,而信息化手段可以有效解决这些问题 。

尽管已有一些就业管理平台,但现有解决方案仍存在不足。例如,信息更新不够及时、数据管理不够集中、用户体验有待提升等问题。这些问题限制了就业管理系统在提升就业服务质量和效率方面的潜力 。

本课题旨在设计并实现一个基于SpringBoot的大学生就业招聘管理系统,该系统将提供用户管理、院系管理、专业管理、岗位类型管理等功能,并通过智能化的数据分析和推荐算法,提高就业匹配的准确度。系统将采用现代化的信息技术,如SpringBoot框架、MySQL数据库等,实现数据的高效管理和处理。

在大学生就业招聘管理系统中,管理员负责系统用户账户的管理、院系和专业的设置、岗位类型的定义、招聘信息的审核与发布、简历投递的查看与处理、面试邀请的发放、就业信息的统计与分析、留言反馈的回复、以及公告信息的管理;企业用户可以发布和管理招聘信息、查看和筛选简历、发送面试邀请、更新录用状态;学生用户能够浏览招聘信息、投递简历、查看面试邀请和录用通知、参与留言反馈、管理个人信息和就业情况。系统通过这些功能模块的整合,旨在提供一个便捷、互动的就业招聘平台,满足不同用户角色的需求,优化就业流程,提高就业服务质量。

本课题的研究具有重要的理论意义和实际意义。从理论角度来看,它为高等教育领域提供了新的研究思路,即如何利用信息技术优化就业管理流程。从实际角度来看,大学生就业招聘管理系统的应用将有助于提高就业管理的效率和质量,降低运营成本,提高学生满意度,推动教育信息化进程,促进教育现代化的发展 。

二、开发环境

  • 开发语言:Java/Python
  • 数据库:MySQL
  • 系统架构:B/S
  • 后端:SpringBoot/SSM/Django/Flask
  • 前端:Vue

三、系统界面展示

  • 大学生就业招聘管理系统界面展示:
    企业-招聘信息管理:
    企业-招聘信息管理管理员-审核招聘信息:
    管理员-审核招聘信息学生-查看招聘信息:
    学生-查看招聘信息学生-投递简历:
    学生-投递简历企业-面试邀请:
    企业-面试邀请用户-登记就业信息:
    用户-登记就业信息管理员-首页统计:
    管理员-首页统计

四、部分代码设计

  • 项目实战-代码参考:
@RestController
@Controller
@RequestMapping("/zhaopin")
public class ZhaopinController {private static final Logger logger = LoggerFactory.getLogger(ZhaopinController.class);private static final String TABLE_NAME = "zhaopin";@Autowiredprivate ZhaopinService zhaopinService;@Autowiredprivate TokenService tokenService;@Autowiredprivate DictionaryService dictionaryService;//字典表@Autowiredprivate ForumService forumService;//论坛@Autowiredprivate GongsiService gongsiService;//企业@Autowiredprivate JianliService jianliService;//简历@Autowiredprivate NewsService newsService;//公告信息@Autowiredprivate TongzhiService tongzhiService;//企业通知@Autowiredprivate ToudiService toudiService;//简历投递@Autowiredprivate YonghuService yonghuService;//用户@Autowiredprivate ZhaopinCollectionService zhaopinCollectionService;//职位收藏@Autowiredprivate ZhaopinLiuyanService zhaopinLiuyanService;//职位留言@Autowiredprivate UsersService usersService;//管理员/*** 后端列表*/@RequestMapping("/page")public R page(@RequestParam Map<String, Object> params, HttpServletRequest request){logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));String role = String.valueOf(request.getSession().getAttribute("role"));if(false)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"));CommonUtil.checkMap(params);PageUtils page = zhaopinService.queryPage(params);//字典表数据转换List<ZhaopinView> list =(List<ZhaopinView>)page.getList();for(ZhaopinView c:list){//修改对应字典表字段dictionaryService.dictionaryConvert(c, request);}return R.ok().put("data", page);}/*** 后端详情*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") Long id, HttpServletRequest request){logger.debug("info方法:,,Controller:{},,id:{}",this.getClass().getName(),id);ZhaopinEntity zhaopin = zhaopinService.selectById(id);if(zhaopin !=null){//entity转viewZhaopinView view = new ZhaopinView();BeanUtils.copyProperties( zhaopin , view );//把实体数据重构到view中//级联表 企业//级联表GongsiEntity gongsi = gongsiService.selectById(zhaopin.getGongsiId());if(gongsi != null){BeanUtils.copyProperties( gongsi , view ,new String[]{ "id", "createTime", "insertTime", "updateTime", "gongsiId"});//把级联的数据添加到view中,并排除id和创建时间字段,当前表的级联注册表view.setGongsiId(gongsi.getId());}//修改对应字典表字段dictionaryService.dictionaryConvert(view, request);return R.ok().put("data", view);}else {return R.error(511,"查不到数据");}}/*** 后端保存*/@RequestMapping("/save")public R save(@RequestBody ZhaopinEntity zhaopin, HttpServletRequest request){logger.debug("save方法:,,Controller:{},,zhaopin:{}",this.getClass().getName(),zhaopin.toString());String role = String.valueOf(request.getSession().getAttribute("role"));if(false)return R.error(511,"永远不会进入");else if("企业".equals(role))zhaopin.setGongsiId(Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId"))));Wrapper<ZhaopinEntity> queryWrapper = new EntityWrapper<ZhaopinEntity>().eq("gongsi_id", zhaopin.getGongsiId()).eq("zhaopin_name", zhaopin.getZhaopinName()).eq("zhaopin_daiyu", zhaopin.getZhaopinDaiyu()).eq("zhaopin_address", zhaopin.getZhaopinAddress()).eq("lianxiren_name", zhaopin.getLianxirenName()).eq("zhaopin_phone", zhaopin.getZhaopinPhone()).eq("zan_number", zhaopin.getZanNumber()).eq("cai_number", zhaopin.getCaiNumber()).eq("zhaopin_types", zhaopin.getZhaopinTypes()).eq("leixing_types", zhaopin.getLeixingTypes()).eq("zhaopin_renshu_number", zhaopin.getZhaopinRenshuNumber()).eq("shangxia_types", zhaopin.getShangxiaTypes());logger.info("sql语句:"+queryWrapper.getSqlSegment());ZhaopinEntity zhaopinEntity = zhaopinService.selectOne(queryWrapper);if(zhaopinEntity==null){zhaopin.setShangxiaTypes(1);zhaopin.setCreateTime(new Date());zhaopinService.insert(zhaopin);return R.ok();}else {return R.error(511,"表中有相同数据");}}/*** 后端修改*/@RequestMapping("/update")public R update(@RequestBody ZhaopinEntity zhaopin, HttpServletRequest request) throws NoSuchFieldException, ClassNotFoundException, IllegalAccessException, InstantiationException {logger.debug("update方法:,,Controller:{},,zhaopin:{}",this.getClass().getName(),zhaopin.toString());ZhaopinEntity oldZhaopinEntity = zhaopinService.selectById(zhaopin.getId());//查询原先数据String role = String.valueOf(request.getSession().getAttribute("role"));
//        if(false)
//            return R.error(511,"永远不会进入");
//        else if("企业".equals(role))
//            zhaopin.setGongsiId(Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId"))));if("".equals(zhaopin.getZhaopinPhoto()) || "null".equals(zhaopin.getZhaopinPhoto())){zhaopin.setZhaopinPhoto(null);}zhaopinService.updateById(zhaopin);//根据id更新return R.ok();}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Integer[] ids, HttpServletRequest request){logger.debug("delete:,,Controller:{},,ids:{}",this.getClass().getName(),ids.toString());List<ZhaopinEntity> oldZhaopinList =zhaopinService.selectBatchIds(Arrays.asList(ids));//要删除的数据zhaopinService.deleteBatchIds(Arrays.asList(ids));return R.ok();}/*** 批量上传*/@RequestMapping("/batchInsert")public R save( String fileName, HttpServletRequest request){logger.debug("batchInsert方法:,,Controller:{},,fileName:{}",this.getClass().getName(),fileName);Integer yonghuId = Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId")));SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");try {List<ZhaopinEntity> zhaopinList = new ArrayList<>();//上传的东西Map<String, List<String>> seachFields= new HashMap<>();//要查询的字段Date date = new Date();int lastIndexOf = fileName.lastIndexOf(".");if(lastIndexOf == -1){return R.error(511,"该文件没有后缀");}else{String suffix = fileName.substring(lastIndexOf);if(!".xls".equals(suffix)){return R.error(511,"只支持后缀为xls的excel文件");}else{URL resource = this.getClass().getClassLoader().getResource("static/upload/" + fileName);//获取文件路径File file = new File(resource.getFile());if(!file.exists()){return R.error(511,"找不到上传文件,请联系管理员");}else{List<List<String>> dataList = PoiUtil.poiImport(file.getPath());//读取xls文件dataList.remove(0);//删除第一行,因为第一行是提示for(List<String> data:dataList){//循环ZhaopinEntity zhaopinEntity = new ZhaopinEntity();
//                            zhaopinEntity.setGongsiId(Integer.valueOf(data.get(0)));   //企业 要改的
//                            zhaopinEntity.setZhaopinName(data.get(0));                    //招聘信息名称 要改的
//                            zhaopinEntity.setZhaopinPhoto("");//详情和图片
//                            zhaopinEntity.setZhaopinDaiyu(data.get(0));                    //薪资待遇 要改的
//                            zhaopinEntity.setZhaopinAddress(data.get(0));                    //上班地点 要改的
//                            zhaopinEntity.setLianxirenName(data.get(0));                    //联系人 要改的
//                            zhaopinEntity.setZhaopinPhone(data.get(0));                    //招聘电话 要改的
//                            zhaopinEntity.setZanNumber(Integer.valueOf(data.get(0)));   //赞 要改的
//                            zhaopinEntity.setCaiNumber(Integer.valueOf(data.get(0)));   //踩 要改的
//                            zhaopinEntity.setZhaopinTypes(Integer.valueOf(data.get(0)));   //招聘岗位 要改的
//                            zhaopinEntity.setLeixingTypes(Integer.valueOf(data.get(0)));   //招聘类型 要改的
//                            zhaopinEntity.setZhaopinRenshuNumber(Integer.valueOf(data.get(0)));   //招聘人数 要改的
//                            zhaopinEntity.setShangxiaTypes(Integer.valueOf(data.get(0)));   //是否上架 要改的
//                            zhaopinEntity.setZhaopinContent("");//详情和图片
//                            zhaopinEntity.setCreateTime(date);//时间zhaopinList.add(zhaopinEntity);//把要查询是否重复的字段放入map中//招聘电话if(seachFields.containsKey("zhaopinPhone")){List<String> zhaopinPhone = seachFields.get("zhaopinPhone");zhaopinPhone.add(data.get(0));//要改的}else{List<String> zhaopinPhone = new ArrayList<>();zhaopinPhone.add(data.get(0));//要改的seachFields.put("zhaopinPhone",zhaopinPhone);}}//查询是否重复//招聘电话List<ZhaopinEntity> zhaopinEntities_zhaopinPhone = zhaopinService.selectList(new EntityWrapper<ZhaopinEntity>().in("zhaopin_phone", seachFields.get("zhaopinPhone")));if(zhaopinEntities_zhaopinPhone.size() >0 ){ArrayList<String> repeatFields = new ArrayList<>();for(ZhaopinEntity s:zhaopinEntities_zhaopinPhone){repeatFields.add(s.getZhaopinPhone());}return R.error(511,"数据库的该表中的 [招聘电话] 字段已经存在 存在数据为:"+repeatFields.toString());}zhaopinService.insertBatch(zhaopinList);return R.ok();}}}}catch (Exception e){e.printStackTrace();return R.error(511,"批量插入数据异常,请联系管理员");}}/*** 个性推荐*/@IgnoreAuth@RequestMapping("/gexingtuijian")public R gexingtuijian(@RequestParam Map<String, Object> params, HttpServletRequest request){logger.debug("gexingtuijian方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));CommonUtil.checkMap(params);List<ZhaopinView> returnZhaopinViewList = new ArrayList<>();//查看收藏Map<String, Object> params1 = new HashMap<>(params);params1.put("sort","id");params1.put("yonghuId",request.getSession().getAttribute("userId"));PageUtils pageUtils = zhaopinCollectionService.queryPage(params1);List<ZhaopinCollectionView> collectionViewsList =(List<ZhaopinCollectionView>)pageUtils.getList();Map<Integer,Integer> typeMap=new HashMap<>();//购买的类型listfor(ZhaopinCollectionView collectionView:collectionViewsList){Integer zhaopinTypes = collectionView.getZhaopinTypes();if(typeMap.containsKey(zhaopinTypes)){typeMap.put(zhaopinTypes,typeMap.get(zhaopinTypes)+1);}else{typeMap.put(zhaopinTypes,1);}}List<Integer> typeList = new ArrayList<>();//排序后的有序的类型 按最多到最少typeMap.entrySet().stream().sorted((o1, o2) -> o2.getValue() - o1.getValue()).forEach(e -> typeList.add(e.getKey()));//排序Integer limit = Integer.valueOf(String.valueOf(params.get("limit")));for(Integer type:typeList){Map<String, Object> params2 = new HashMap<>(params);params2.put("zhaopinTypes",type);PageUtils pageUtils1 = zhaopinService.queryPage(params2);List<ZhaopinView> zhaopinViewList =(List<ZhaopinView>)pageUtils1.getList();returnZhaopinViewList.addAll(zhaopinViewList);if(returnZhaopinViewList.size()>= limit) break;//返回的推荐数量大于要的数量 跳出循环}//正常查询出来商品,用于补全推荐缺少的数据PageUtils page = zhaopinService.queryPage(params);if(returnZhaopinViewList.size()<limit){//返回数量还是小于要求数量int toAddNum = limit - returnZhaopinViewList.size();//要添加的数量List<ZhaopinView> zhaopinViewList =(List<ZhaopinView>)page.getList();for(ZhaopinView zhaopinView:zhaopinViewList){Boolean addFlag = true;for(ZhaopinView returnZhaopinView:returnZhaopinViewList){if(returnZhaopinView.getId().intValue() ==zhaopinView.getId().intValue()) addFlag=false;//返回的数据中已存在此商品}if(addFlag){toAddNum=toAddNum-1;returnZhaopinViewList.add(zhaopinView);if(toAddNum==0) break;//够数量了}}}else {returnZhaopinViewList = returnZhaopinViewList.subList(0, limit);}for(ZhaopinView c:returnZhaopinViewList)dictionaryService.dictionaryConvert(c, request);page.setList(returnZhaopinViewList);return R.ok().put("data", page);}/*** 前端列表*/@IgnoreAuth@RequestMapping("/list")public R list(@RequestParam Map<String, Object> params, HttpServletRequest request){logger.debug("list方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));CommonUtil.checkMap(params);PageUtils page = zhaopinService.queryPage(params);//字典表数据转换List<ZhaopinView> list =(List<ZhaopinView>)page.getList();for(ZhaopinView c:list)dictionaryService.dictionaryConvert(c, request); //修改对应字典表字段return R.ok().put("data", page);}/*** 前端详情*/@RequestMapping("/detail/{id}")public R detail(@PathVariable("id") Long id, HttpServletRequest request){logger.debug("detail方法:,,Controller:{},,id:{}",this.getClass().getName(),id);ZhaopinEntity zhaopin = zhaopinService.selectById(id);if(zhaopin !=null){//entity转viewZhaopinView view = new ZhaopinView();BeanUtils.copyProperties( zhaopin , view );//把实体数据重构到view中//级联表GongsiEntity gongsi = gongsiService.selectById(zhaopin.getGongsiId());if(gongsi != null){BeanUtils.copyProperties( gongsi , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段view.setGongsiId(gongsi.getId());}//修改对应字典表字段dictionaryService.dictionaryConvert(view, request);return R.ok().put("data", view);}else {return R.error(511,"查不到数据");}}/*** 前端保存*/@RequestMapping("/add")public R add(@RequestBody ZhaopinEntity zhaopin, HttpServletRequest request){logger.debug("add方法:,,Controller:{},,zhaopin:{}",this.getClass().getName(),zhaopin.toString());Wrapper<ZhaopinEntity> queryWrapper = new EntityWrapper<ZhaopinEntity>().eq("gongsi_id", zhaopin.getGongsiId()).eq("zhaopin_name", zhaopin.getZhaopinName()).eq("zhaopin_daiyu", zhaopin.getZhaopinDaiyu()).eq("zhaopin_address", zhaopin.getZhaopinAddress()).eq("lianxiren_name", zhaopin.getLianxirenName()).eq("zhaopin_phone", zhaopin.getZhaopinPhone()).eq("zan_number", zhaopin.getZanNumber()).eq("cai_number", zhaopin.getCaiNumber()).eq("zhaopin_types", zhaopin.getZhaopinTypes()).eq("leixing_types", zhaopin.getLeixingTypes()).eq("zhaopin_renshu_number", zhaopin.getZhaopinRenshuNumber()).eq("shangxia_types", zhaopin.getShangxiaTypes())
//            .notIn("zhaopin_types", new Integer[]{102});logger.info("sql语句:"+queryWrapper.getSqlSegment());ZhaopinEntity zhaopinEntity = zhaopinService.selectOne(queryWrapper);if(zhaopinEntity==null){zhaopin.setZanNumber(1);zhaopin.setCaiNumber(1);zhaopin.setCreateTime(new Date());zhaopinService.insert(zhaopin);return R.ok();}else {return R.error(511,"表中有相同数据");}}}
@RestController
@Controller
@RequestMapping("/toudi")
public class ToudiController {private static final Logger logger = LoggerFactory.getLogger(ToudiController.class);private static final String TABLE_NAME = "toudi";@Autowiredprivate ToudiService toudiService;@Autowiredprivate TokenService tokenService;@Autowiredprivate DictionaryService dictionaryService;//字典表@Autowiredprivate ForumService forumService;//论坛@Autowiredprivate GongsiService gongsiService;//企业@Autowiredprivate JianliService jianliService;//简历@Autowiredprivate NewsService newsService;//公告信息@Autowiredprivate TongzhiService tongzhiService;//企业通知@Autowiredprivate YonghuService yonghuService;//用户@Autowiredprivate ZhaopinService zhaopinService;//职位招聘@Autowiredprivate ZhaopinCollectionService zhaopinCollectionService;//职位收藏@Autowiredprivate ZhaopinLiuyanService zhaopinLiuyanService;//职位留言@Autowiredprivate UsersService usersService;//管理员/*** 后端列表*/@RequestMapping("/page")public R page(@RequestParam Map<String, Object> params, HttpServletRequest request){logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));String role = String.valueOf(request.getSession().getAttribute("role"));if(false)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"));CommonUtil.checkMap(params);PageUtils page = toudiService.queryPage(params);//字典表数据转换List<ToudiView> list =(List<ToudiView>)page.getList();for(ToudiView c:list){//修改对应字典表字段dictionaryService.dictionaryConvert(c, request);}return R.ok().put("data", page);}/*** 后端详情*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") Long id, HttpServletRequest request){logger.debug("info方法:,,Controller:{},,id:{}",this.getClass().getName(),id);ToudiEntity toudi = toudiService.selectById(id);if(toudi !=null){//entity转viewToudiView view = new ToudiView();BeanUtils.copyProperties( toudi , view );//把实体数据重构到view中//级联表 简历//级联表JianliEntity jianli = jianliService.selectById(toudi.getJianliId());if(jianli != null){BeanUtils.copyProperties( jianli , view ,new String[]{ "id", "createTime", "insertTime", "updateTime"});//把级联的数据添加到view中,并排除id和创建时间字段,当前表的级联注册表view.setJianliId(jianli.getId());}//级联表 职位招聘//级联表ZhaopinEntity zhaopin = zhaopinService.selectById(toudi.getZhaopinId());if(zhaopin != null){BeanUtils.copyProperties( zhaopin , view ,new String[]{ "id", "createTime", "insertTime", "updateTime"});//把级联的数据添加到view中,并排除id和创建时间字段,当前表的级联注册表view.setZhaopinId(zhaopin.getId());}//修改对应字典表字段dictionaryService.dictionaryConvert(view, request);return R.ok().put("data", view);}else {return R.error(511,"查不到数据");}}/*** 后端保存*/@RequestMapping("/save")public R save(@RequestBody ToudiEntity toudi, HttpServletRequest request){logger.debug("save方法:,,Controller:{},,toudi:{}",this.getClass().getName(),toudi.toString());String role = String.valueOf(request.getSession().getAttribute("role"));if(false)return R.error(511,"永远不会进入");Wrapper<JianliEntity> jianliEntityWrapper = new EntityWrapper<JianliEntity>().eq("yonghu_id", request.getSession().getAttribute("userId"));List<JianliEntity> jianliEntities = jianliService.selectList(jianliEntityWrapper);toudi.setJianliId(jianliEntities.get(0).getId());Wrapper<ToudiEntity> queryWrapper = new EntityWrapper<ToudiEntity>().eq("jianli_id", toudi.getJianliId()).eq("zhaopin_id", toudi.getZhaopinId()).in("toudi_yesno_types", new Integer[]{1,2});logger.info("sql语句:"+queryWrapper.getSqlSegment());ToudiEntity toudiEntity = toudiService.selectOne(queryWrapper);if(toudiEntity==null){toudi.setToudiYesnoTypes(1);toudi.setInsertTime(new Date());toudi.setCreateTime(new Date());toudiService.insert(toudi);return R.ok();}else {if(toudiEntity.getToudiYesnoTypes()==1)return R.error(511,"有相同的待审核的数据");else if(toudiEntity.getToudiYesnoTypes()==2)return R.error(511,"有相同的审核通过的数据");elsereturn R.error(511,"表中有相同数据");}}/*** 后端修改*/@RequestMapping("/update")public R update(@RequestBody ToudiEntity toudi, HttpServletRequest request) throws NoSuchFieldException, ClassNotFoundException, IllegalAccessException, InstantiationException {logger.debug("update方法:,,Controller:{},,toudi:{}",this.getClass().getName(),toudi.toString());ToudiEntity oldToudiEntity = toudiService.selectById(toudi.getId());//查询原先数据String role = String.valueOf(request.getSession().getAttribute("role"));
//        if(false)
//            return R.error(511,"永远不会进入");toudiService.updateById(toudi);//根据id更新return R.ok();}/*** 审核*/@RequestMapping("/shenhe")public R shenhe(@RequestBody ToudiEntity toudiEntity, HttpServletRequest request){logger.debug("shenhe方法:,,Controller:{},,toudiEntity:{}",this.getClass().getName(),toudiEntity.toString());ToudiEntity oldToudi = toudiService.selectById(toudiEntity.getId());//查询原先数据//        if(toudiEntity.getToudiYesnoTypes() == 2){//通过
//            toudiEntity.setToudiTypes();
//        }else if(toudiEntity.getToudiYesnoTypes() == 3){//拒绝
//            toudiEntity.setToudiTypes();
//        }toudiService.updateById(toudiEntity);//审核return R.ok();}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Integer[] ids, HttpServletRequest request){logger.debug("delete:,,Controller:{},,ids:{}",this.getClass().getName(),ids.toString());List<ToudiEntity> oldToudiList =toudiService.selectBatchIds(Arrays.asList(ids));//要删除的数据toudiService.deleteBatchIds(Arrays.asList(ids));return R.ok();}/*** 批量上传*/@RequestMapping("/batchInsert")public R save( String fileName, HttpServletRequest request){logger.debug("batchInsert方法:,,Controller:{},,fileName:{}",this.getClass().getName(),fileName);Integer yonghuId = Integer.valueOf(String.valueOf(request.getSession().getAttribute("userId")));SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");try {List<ToudiEntity> toudiList = new ArrayList<>();//上传的东西Map<String, List<String>> seachFields= new HashMap<>();//要查询的字段Date date = new Date();int lastIndexOf = fileName.lastIndexOf(".");if(lastIndexOf == -1){return R.error(511,"该文件没有后缀");}else{String suffix = fileName.substring(lastIndexOf);if(!".xls".equals(suffix)){return R.error(511,"只支持后缀为xls的excel文件");}else{URL resource = this.getClass().getClassLoader().getResource("static/upload/" + fileName);//获取文件路径File file = new File(resource.getFile());if(!file.exists()){return R.error(511,"找不到上传文件,请联系管理员");}else{List<List<String>> dataList = PoiUtil.poiImport(file.getPath());//读取xls文件dataList.remove(0);//删除第一行,因为第一行是提示for(List<String> data:dataList){//循环ToudiEntity toudiEntity = new ToudiEntity();
//                            toudiEntity.setJianliId(Integer.valueOf(data.get(0)));   //简历 要改的
//                            toudiEntity.setZhaopinId(Integer.valueOf(data.get(0)));   //招聘 要改的
//                            toudiEntity.setToudiYesnoTypes(Integer.valueOf(data.get(0)));   //投递状态 要改的
//                            toudiEntity.setToudiYesnoText(data.get(0));                    //投递回复 要改的
//                            toudiEntity.setInsertTime(date);//时间
//                            toudiEntity.setCreateTime(date);//时间toudiList.add(toudiEntity);//把要查询是否重复的字段放入map中}//查询是否重复toudiService.insertBatch(toudiList);return R.ok();}}}}catch (Exception e){e.printStackTrace();return R.error(511,"批量插入数据异常,请联系管理员");}}/*** 前端列表*/@IgnoreAuth@RequestMapping("/list")public R list(@RequestParam Map<String, Object> params, HttpServletRequest request){logger.debug("list方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));CommonUtil.checkMap(params);PageUtils page = toudiService.queryPage(params);//字典表数据转换List<ToudiView> list =(List<ToudiView>)page.getList();for(ToudiView c:list)dictionaryService.dictionaryConvert(c, request); //修改对应字典表字段return R.ok().put("data", page);}/*** 前端详情*/@RequestMapping("/detail/{id}")public R detail(@PathVariable("id") Long id, HttpServletRequest request){logger.debug("detail方法:,,Controller:{},,id:{}",this.getClass().getName(),id);ToudiEntity toudi = toudiService.selectById(id);if(toudi !=null){//entity转viewToudiView view = new ToudiView();BeanUtils.copyProperties( toudi , view );//把实体数据重构到view中//级联表JianliEntity jianli = jianliService.selectById(toudi.getJianliId());if(jianli != null){BeanUtils.copyProperties( jianli , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段view.setJianliId(jianli.getId());}//级联表ZhaopinEntity zhaopin = zhaopinService.selectById(toudi.getZhaopinId());if(zhaopin != null){BeanUtils.copyProperties( zhaopin , view ,new String[]{ "id", "createDate"});//把级联的数据添加到view中,并排除id和创建时间字段view.setZhaopinId(zhaopin.getId());}//修改对应字典表字段dictionaryService.dictionaryConvert(view, request);return R.ok().put("data", view);}else {return R.error(511,"查不到数据");}}/*** 前端保存*/@RequestMapping("/add")public R add(@RequestBody ToudiEntity toudi, HttpServletRequest request){logger.debug("add方法:,,Controller:{},,toudi:{}",this.getClass().getName(),toudi.toString());Wrapper<ToudiEntity> queryWrapper = new EntityWrapper<ToudiEntity>().eq("jianli_id", toudi.getJianliId()).eq("zhaopin_id", toudi.getZhaopinId()).in("toudi_yesno_types", new Integer[]{1,2}).eq("toudi_yesno_text", toudi.getToudiYesnoText())
//            .notIn("toudi_types", new Integer[]{102});logger.info("sql语句:"+queryWrapper.getSqlSegment());ToudiEntity toudiEntity = toudiService.selectOne(queryWrapper);if(toudiEntity==null){toudi.setToudiYesnoTypes(1);toudi.setInsertTime(new Date());toudi.setCreateTime(new Date());toudiService.insert(toudi);return R.ok();}else {if(toudiEntity.getToudiYesnoTypes()==1)return R.error(511,"有相同的待审核的数据");else if(toudiEntity.getToudiYesnoTypes()==2)return R.error(511,"有相同的审核通过的数据");elsereturn R.error(511,"表中有相同数据");}}}

五、论文参考

  • 计算机毕业设计选题推荐-大学生就业招聘管理系统-论文参考:
    计算机毕业设计选题推荐-大学生就业招聘管理系统-论文参考

六、系统视频

  • 大学生就业招聘管理系统-项目视频:

计算机毕业设计选题推荐-大学生就业招聘管理系统-项目实战

结语

计算机毕业设计选题推荐-大学生就业招聘管理系统-Java/Python项目实战
大家可以帮忙点赞、收藏、关注、评论啦~
源码获取:⬇⬇⬇

精彩专栏推荐⬇⬇⬇
Java项目
Python项目
安卓项目
微信小程序项目

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/399569.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Redis】Redis 初探:特性、应用场景与高并发架构演进之路

目录 初识 Redis关于 Redis服务端高并发分布式结构演进之路概述常⻅概念基本概念应⽤&#xff08;Application&#xff09;/ 系统&#xff08;System&#xff09;模块&#xff08;Module&#xff09;/ 组件&#xff08;Component&#xff09;分布式&#xff08;Distributed&…

SSM养老院信息管理系统—计算机毕业设计源码16963

目 录 摘要 1 绪论 1.1研究意义 1.2开发意义 1.3ssm框架介绍 1.4论文结构与章节安排 2 养老院信息管理系统系统分析 2.1 可行性分析 2.1.1 技术可行性分析 2.1.2 经济可行性分析 2.1.3 法律可行性分析 2.2 系统功能分析 2.2.1 功能性分析 2.2.2 非功能性分析 2.…

C++ STL初阶(9):list 中关于reverse_iterator的实现

在完成vector和list的iterator相关部分的实践后来完成反向迭代器的实现 1. list的反向迭代器 书接上回&#xff0c;反向迭代器应当重新封装一个类。 反向迭代器和正向迭代器最大的区别就是&#xff0c;反向迭代器是倒着走的&#xff0c;所以最核心的逻辑就是将封装成-- 注意&am…

Cadence Allegro 入门教程笔记:如何绘制原理图和原理图库?

文章目录 一、用 Capture CIS 17.4 绘制原理图库 Cadence Allegro QQ交流学习裙&#xff1a;173416628 1、凡亿教育的Cadence Allegro 17.4基础教程 2、小哥Cadence Allegro 132讲 技巧视频 3、小哥Cadence Allegro 两层板 基础视频 4、小哥Cadence Allegro 四层板 提高视频…

【NLP】文本处理的基本方法【jieba分词、命名实体、词性标注】

文章目录 1、本章目标2、什么是分词3、jieba的使用3.1、精确模式分词3.2、全模式分词3.3、搜索引擎模式分词3.4、中文繁体分词3.5、使用用户自定义词典 4、什么是命名实体识别5、什么是词性标注6、小结7、jieba词性对照表⭐ &#x1f343;作者介绍&#xff1a;双非本科大三网络…

opencv-python图像增强三:图像清晰度增强

文章目录 一、简介&#xff1a;二、图像清晰度增强方案&#xff1a;三、算法实现步骤3.1高反差保留实现3.2. usm锐化3.3 Overlay叠加 四&#xff1a;整体代码实现五&#xff1a;效果 一、简介&#xff1a; 你是否有过这样的烦恼&#xff0c;拍出来的照片总是不够清晰&#xff…

【Linux】网络编程套接字Scoket:UDP网络编程

目录 一、了解UDP协议 二、了解端口和IP地址 三、套接字概述与Socket的概念 四、Socket的类型 五、 Socket的信息数据结构 六、网络字节序与主机字节序的互相转换 七、地址转换函数 八、UDP网络编程流程及相关函数 socket函数 bind函数 recvfrom函数 sendto函数 …

UIAbility组件基础(一)

一、概述 UIAbility组件是一种包含UI的应用组件&#xff0c;主要用于和用户交互。UIAbility组件是系统调度的基本单元&#xff0c;为应用提供绘制界面的窗口。一个应用可以包含一个或多个UIAbility组件。每一个UIAbility组件实例都会在最近任务列表中显示一个对应的任务。 U…

C语言 ——— 学习、使用memmove函数 并模拟实现

目录 memmvoe函数的功能 学习memmove函数​编辑 模拟实现memmove函数 memmvoe函数的功能 memmvoe函数的功能类似于memcpy函数&#xff0c;都是内存拷贝&#xff0c;唯一的区别是memcpy函数不能成功拷贝原数据&#xff0c;而memmvoe函数可以 举例来说&#xff1a; [1, 2, 3…

单元测试注解:@ContextConfiguration

ContextConfiguration注解 ContextConfiguration注解主要用于在‌Spring框架中加载和配置Spring上下文&#xff0c;特别是在测试场景中。 它允许开发者指定要加载的配置文件或配置类的位置&#xff0c;以便在运行时或测试时能够正确地构建和初始化Spring上下文。 基本用途和工…

全国首个数据要素人才标准,亿信华辰携76家单位共同起草

在数字化浪潮汹涌的今天&#xff0c;数据已跃升为社会经济发展的核心引擎。如何精准、高效地评估数据要素领域人才的专业能力&#xff0c;成为了亟待解决的关键议题。亿信华辰积极响应国家战略布局&#xff0c;依托自身在大数据管理与应用领域的深厚底蕴&#xff0c;携手业界76…

CUDA Programming - (1) CUDA简介

1. GPU 简介 处理器一般包含以下几部分&#xff1a;Cache 缓存&#xff0c;ALU 计算单元&#xff0c;Control 控制中心&#xff0c;RAM 内存。 CPU&#xff08;Central Processing Unit&#xff09;&#xff1a;中央处理器。适合进行逻辑&#xff0c;ALU计算核心较少。适合控…

企业源代码加密软件有哪些?2024最好用的十款源代码加密软件

在当今快速发展的技术环境中&#xff0c;企业源代码的安全性至关重要。源代码不仅包含着企业的核心知识产权&#xff0c;还可能涉及敏感的商业数据。因此&#xff0c;选择一款合适的源代码加密软件&#xff0c;对于保护企业资产和避免数据泄露风险至关重要。随着安全技术的不断…

Codeforces Pinely Round 4 (Div. 1 + Div. 2) A~G

A.Maximize the Last Element&#xff08;枚举&#xff09; 题意&#xff1a; 给你一个由 n n n个整数组成的数组 a a a&#xff0c;其中 n n n是奇数。 在一次操作中&#xff0c;你将从数组 a a a中删除两个相邻的元素&#xff0c;然后将数组的剩余部分连接起来。例如&…

git常见命令和常见问题解决

文章目录 常见命令问题问题1&#xff08;git push相关&#xff09;问题2&#xff08;git push相关&#xff09;问题3&#xff08;git push相关&#xff09;删除github的仓库github新创建本地仓库的操作…or create a new repository on the command line…or push an existing …

led台灯对眼睛好不好?揭秘使用护眼台灯能不能有效预防近视

在当前社会&#xff0c;近视的影响不容小视&#xff0c;除了对视觉健康的影响外&#xff0c;近视还可能对个人的心理健康产生负面影响。视力不佳可能导致自卑感和社会交往障碍&#xff0c;尤其是在儿童和青少年时期。保护视力健康要从小做起&#xff0c;家长们可以关注孩子的用…

[openSSL]TLS 1.3握手分析

文章目录 前言一、ECDHE密钥交换二、TLS单向身份认证三、TLS双向身份认证 前言 关于TLS握手网上资料很多&#xff0c;但是有一些写的很不清楚&#xff0c;导致学习时对概念和流程出现混淆&#xff0c;以下是我觉得写得比较清晰和准确的供学习参考。 浅析 TLS&#xff08;ECDHE…

超算互联网-Stable Diffusion 2.1文生图教程

一、名词简介 1. 超算互联网 超算互联网是一种基于云计算的高性能计算平台&#xff0c;用户可以通过互联网接入超级计算资源。它集成了大量的计算节点&#xff0c;提供强大的计算能力&#xff0c;适用于科学计算、深度学习、人工智能等领域。用户可以利用超算互联网平台运行复…

老阳推荐的temu选品师项目能不能做成?

在不断变化的电商领域&#xff0c;temU选品师项目作为一种新兴职业&#xff0c;受到了越来越多的关注。老阳的推荐使得这一项目引起了不少人的兴趣&#xff0c;那么&#xff0c;temU选品师项目究竟能否成功呢?让我们从一个新的角度来探讨这一问题。 新兴市场的机遇与挑战 temU…

基于VEH的无痕HOOK

这里的无痕HOOK指的是不破坏程序机器码,这样就可以绕过CRC或MD5的校验。 VEH利用了Windows的调试机制和异常处理,人为抛出异常,从异常的上下文中获取寄存器信息。 DLL入口 // dllmain.cpp : 定义 DLL 应用程序的入口点。 #include "pch.h" #include "CHoo…