当前位置: 首页 > news >正文

SpringBoot+Vue高校学生实习综合服务平台源码+论文

代码可以查看文章末尾⬇️联系方式获取,记得注明来意哦~🌹
分享万套开题报告+任务书+答辩PPT模板
作者完整代码目录供你选择:
《SpringBoot网站项目》1800套
《SSM网站项目》1500套
《小程序项目》1600套
《APP项目》1500套
《Python网站项目》1300套
⬇️文章末尾可以获取联系方式,需要源码或者演示视频可以联系⬇️
⚡感兴趣大家可以点点关注收藏,后续更新更多项目资料。⚡

采用技术:

编程语言:Java
后端框架:SpringBoot
前端框架:Vue
数据库:MySQL
数据表数量:30张表
运行软件:IDEA、Eclipse、VS Code都可以

系统功能:


本系统实现管理员、学生、教师、企业员工模块。
管理员模块功能:类型标签、实习信息、论坛交流、活动类型、请假申请、通知公告、实习周报、企业信息、招聘活动、学校信息、实习证明、投递简历、岗位类型、平台资讯、教师、招聘岗位、学生、企业员工、平台资讯、学校信息、企业信息、招聘岗位、招聘活动、通知公告、论坛交流等。
学生模块功能:实习证明、实习信息、我的收藏、请假申请、实习周报、我的发布、投递简历、平台资讯、学校信息、企业信息、招聘岗位、招聘活动、通知公告、论坛交流等。
教师模块功能:学校信息、企业信息、招聘活动、通知公告、实习信息、平台资讯、学生、招聘岗位、平台资讯、学校信息、企业信息、招聘岗位、招聘活动、通知公告、论坛交流等。
企业员工模块功能:实习信息、企业信息、请假申请、实习周报、通知公告、实习证明、平台资讯、招聘岗位、投递简历、平台资讯、学校信息、企业信息、招聘岗位、招聘活动、通知公告、论坛交流等。

运行截图:






























论文目录:



核心代码:

packagecom.controller;importjava.text.SimpleDateFormat;importcom.alibaba.fastjson.JSONObject;importjava.util.*;importorg.springframework.beans.BeanUtils;importjavax.servlet.http.HttpServletRequest;importorg.springframework.web.context.ContextLoader;importjavax.servlet.ServletContext;importcom.service.TokenService;importcom.utils.StringUtil;importjava.lang.reflect.InvocationTargetException;importcom.service.DictionaryService;importorg.apache.commons.lang3.StringUtils;importcom.annotation.IgnoreAuth;importorg.slf4j.Logger;importorg.slf4j.LoggerFactory;importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.stereotype.Controller;importorg.springframework.web.bind.annotation.*;importcom.baomidou.mybatisplus.mapper.EntityWrapper;importcom.baomidou.mybatisplus.mapper.Wrapper;importcom.entity.YonghuEntity;importcom.service.YonghuService;importcom.entity.view.YonghuView;importcom.utils.PageUtils;importcom.utils.R;@RestController@Controller@RequestMapping("/yonghu")publicclassYonghuController{privatestaticfinalLoggerlogger=LoggerFactory.getLogger(YonghuController.class);@AutowiredprivateYonghuServiceyonghuService;@AutowiredprivateTokenServicetokenService;@AutowiredprivateDictionaryServicedictionaryService;//级联表service/** * 后端列表 */@RequestMapping("/page")publicRpage(@RequestParamMap<String,Object>params,HttpServletRequestrequest){logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));params.put("orderBy","id");PageUtilspage=yonghuService.queryPage(params);//字典表数据转换List<YonghuView>list=(List<YonghuView>)page.getList();for(YonghuViewc:list){//修改对应字典表字段dictionaryService.dictionaryConvert(c);}returnR.ok().put("data",page);}/** * 后端详情 */@RequestMapping("/info/{id}")publicRinfo(@PathVariable("id")Longid){logger.debug("info方法:,,Controller:{},,id:{}",this.getClass().getName(),id);YonghuEntityyonghu=yonghuService.selectById(id);if(yonghu!=null){//entity转viewYonghuViewview=newYonghuView();BeanUtils.copyProperties(yonghu,view);//把实体数据重构到view中//修改对应字典表字段dictionaryService.dictionaryConvert(view);returnR.ok().put("data",view);}else{returnR.error(511,"查不到数据");}}/** * 后端保存 */@RequestMapping("/save")publicRsave(@RequestBodyYonghuEntityyonghu,HttpServletRequestrequest){logger.debug("save方法:,,Controller:{},,yonghu:{}",this.getClass().getName(),yonghu.toString());Wrapper<YonghuEntity>queryWrapper=newEntityWrapper<YonghuEntity>().eq("username",yonghu.getUsername()).or().eq("yonghu_phone",yonghu.getYonghuPhone()).or().eq("yonghu_id_number",yonghu.getYonghuIdNumber());;logger.info("sql语句:"+queryWrapper.getSqlSegment());YonghuEntityyonghuEntity=yonghuService.selectOne(queryWrapper);if(yonghuEntity==null){yonghu.setCreateTime(newDate());yonghu.setPassword("123456");// String role = String.valueOf(request.getSession().getAttribute("role"));// if("".equals(role)){// yonghu.set// }yonghuService.insert(yonghu);returnR.ok();}else{returnR.error(511,"账户或者身份证号或者手机号已经被使用");}}/** * 后端修改 */@RequestMapping("/update")publicRupdate(@RequestBodyYonghuEntityyonghu,HttpServletRequestrequest){logger.debug("update方法:,,Controller:{},,yonghu:{}",this.getClass().getName(),yonghu.toString());//根据字段查询是否有相同数据Wrapper<YonghuEntity>queryWrapper=newEntityWrapper<YonghuEntity>().notIn("id",yonghu.getId()).andNew().eq("username",yonghu.getUsername()).or().eq("yonghu_phone",yonghu.getYonghuPhone()).or().eq("yonghu_id_number",yonghu.getYonghuIdNumber());;logger.info("sql语句:"+queryWrapper.getSqlSegment());YonghuEntityyonghuEntity=yonghuService.selectOne(queryWrapper);if("".equals(yonghu.getYonghuPhoto())||"null".equals(yonghu.getYonghuPhoto())){yonghu.setYonghuPhoto(null);}if(yonghuEntity==null){// String role = String.valueOf(request.getSession().getAttribute("role"));// if("".equals(role)){// yonghu.set// }yonghuService.updateById(yonghu);//根据id更新returnR.ok();}else{returnR.error(511,"账户或者身份证号或者手机号已经被使用");}}/** * 删除 */@RequestMapping("/delete")publicRdelete(@RequestBodyInteger[]ids){logger.debug("delete:,,Controller:{},,ids:{}",this.getClass().getName(),ids.toString());yonghuService.deleteBatchIds(Arrays.asList(ids));returnR.ok();}/** * 登录 */@IgnoreAuth@RequestMapping(value="/login")publicRlogin(Stringusername,Stringpassword,Stringcaptcha,HttpServletRequestrequest){YonghuEntityyonghu=yonghuService.selectOne(newEntityWrapper<YonghuEntity>().eq("username",username));if(yonghu==null||!yonghu.getPassword().equals(password)){returnR.error("账号或密码不正确");}Stringtoken=tokenService.generateToken(yonghu.getId(),username,"yonghu","用户");Rr=R.ok();r.put("token",token);r.put("role","用户");r.put("username",yonghu.getYonghuName());r.put("tableName","yonghu");r.put("userId",yonghu.getId());returnr;}/** * 注册 */@IgnoreAuth@PostMapping(value="/register")publicRregister(@RequestBodyYonghuEntityyonghu){// ValidatorUtils.validateEntity(user);if(yonghuService.selectOne(newEntityWrapper<YonghuEntity>().eq("username",yonghu.getUsername()).orNew().eq("yonghu_phone",yonghu.getYonghuPhone()).orNew().eq("yonghu_id_number",yonghu.getYonghuIdNumber()))!=null){returnR.error("账户已存在或手机号或身份证号已经被使用");}yonghuService.insert(yonghu);returnR.ok();}/** * 重置密码 */@GetMapping(value="/resetPassword")publicRresetPassword(Integerid){YonghuEntityyonghu=newYonghuEntity();yonghu.setPassword("123456");yonghu.setId(id);yonghuService.updateById(yonghu);returnR.ok();}/** * 获取用户的session用户信息 */@RequestMapping("/session")publicRgetCurrYonghu(HttpServletRequestrequest){Integerid=(Integer)request.getSession().getAttribute("userId");YonghuEntityyonghu=yonghuService.selectById(id);returnR.ok().put("data",yonghu);}/** * 退出 */@GetMapping(value="logout")publicRlogout(HttpServletRequestrequest){request.getSession().invalidate();returnR.ok("退出成功");}}t("data",yonghu);}/** * 退出 */@GetMapping(value="logout")publicRlogout(HttpServletRequestrequest){request.getSession().invalidate();returnR.ok("退出成功");}}quest.getSession().invalidate();returnR.ok("退出成功");}}t("data",yonghu);}/** * 退出 */@GetMapping(value="logout")publicRlogout(HttpServletRequestrequest){request.getSession().invalidate();returnR.ok("退出成功");}}
http://www.zskr.cn/news/1498785.html

相关文章:

  • 告别玄学!用Multisim/ADS手把手仿真SI信号完整性与PI电源噪声(从理论到波形)
  • 从工地安全帽到H5视频通话:一个uni-app + WebRTC项目的踩坑与填坑实录
  • 告别地图偏差:手把手教你用Python实现兰勃特投影正反变换(附WGS-84椭球参数)
  • 别再被‘无效编译器’劝退!Code::Blocks 20.03 + MinGW 完整配置保姆级教程
  • 从像素块到矢量多边形:我是如何用‘对抗形状学习’搞定航拍图中模糊建筑边界的
  • 杭州 K 金与足金回收解析 金价走低教你合理处置闲置金饰 - 奢侈品回收评测
  • 别再手动合并了!Excel高手都在用的数组公式,5分钟搞定两列数据去重合并
  • ReAct模式:让AI边思考边行动的智能体工作流
  • 别再为python-docx读取字体返回None发愁了,这份实战避坑指南帮你搞定
  • 2026年6月濮阳本地黄金铂金白银金条回收靠谱门店 TOP5 榜单+实体老店联系方式 + 详细地址 - 中业金奢再生回收中心
  • 多模态讽刺检测技术:GDCNet的创新与应用
  • Databricks社区版升级付费版:AWS云环境部署与生产就绪指南
  • 奉贤区全屋定制工厂怎么选?2026年上海本地直营避坑指南与官方对接渠道 - 优质企业观察收录
  • 探秘职坐标:AI+教育的实力之选 - 品牌测评鉴赏家
  • 2026湖州贵金属旧料回收优质门店排行 TOP5 黄金白银铂金金条回收正规老店实地走访整理 - 信誉隆金银铂奢回收
  • 2026 年 6 月重磅推荐 | 卡地亚官方售后网点实地考察与验证报告(含迁址新开) - 亨得利官方维修中心
  • 手表长期佩戴导致漆面老化,北京浪琴表盘字符褪色故障科普,盘点维修误区和日常养护要点 - 亨得利官方维修中心
  • 别再只用循环了!用Python的zip和yield函数优雅生成杨辉三角(附性能对比)
  • 保姆级图解:从TMDS差分信号到EDID读取,彻底搞懂HDMI线里到底跑了啥
  • 2026 成都各区包包回收指南,实体店地址与报价全面整理 - 开心测评
  • 从驱动兼容到连接测试:一次搞定SpringBoot与国产GBase数据库的整合实战
  • 2026年6月湖州本地黄金铂金白银金条回收靠谱门店 TOP5 榜单+实体老店联系方式 + 详细地址 - 中业金奢再生回收中心
  • 2026吉安贵金属旧料回收优质门店排行 TOP5 黄金白银铂金金条回收正规老店实地走访整理 - 信誉隆金银铂奢回收
  • 2026 年 6 月武汉爱马仕包包变现,高端名包专项回收,交易流程简洁顺畅 - 薛定谔的梨花猫
  • 别再死磕A*了!用Matlab从零复现RRT算法,我连避坑参数都调好了
  • 别再一个个改了!Mathtype搭配Word的‘格式化公式’功能,5分钟搞定全文档公式格式
  • 成都黄金首饰回收攻略,手镯项链戒指出手行情解析 - 开心测评
  • 2026杭州黄金回收行情:金价四连跌后,现在卖还是再等等 - 奢侈品回收评测
  • 2026年茂名车主为爱车寻觅贴膜与影音升级有哪些观察 - 国麟测评
  • 保姆级教程:用CANoe 11 SP2手把手调试ISO 15765-2多帧传输(附实战代码)