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

基于SpringBoot+Vue的地方废物回收机构管理系统设计与实现(源码+LW+部署文档等)

博主介绍:  

大家好,我是一名在Java圈混迹十余年的程序员,精通Java编程语言,同时也熟练掌握微信小程序、Python和Android等技术,能够为大家提供全方位的技术支持和交流。
我擅长在JavaWeb、SSH、SSM、SpringBoot等框架下进行项目开发,具有丰富的项目经验和开发技能。我的代码风格规范、优美、易读性强,同时也注重性能优化、代码重构等方面的实践和经验总结。
我有丰富的成品Java毕设项目经验,能够为学生提供各类个性化的开题框架和实际运作方案。同时我也提供相关的学习资料、程序开发、技术解答、代码讲解、文档报告等专业服务。

🍅技术交流和部署相关看文章末尾!🍅

👇🏻 精彩专栏推荐订阅👇🏻 不然下次找不到哟

Java项目精品实战案例(300套)

地方废物回收机构管理系统源码下载地址:

https://download.csdn.net/download/weixin_54828627/87790757

一、效果演示

基于springboot的地方废物回收机构管理系统演示视频

二、前言介绍

网络的广泛应用给生活带来了十分的便利。所以把地方废物回收机构管理与现在网络相结合,利用java技术建设地方废物回收机构管理系统,实现地方废物回收机构的信息化。则对于进一步提高地方废物回收机构管理发展,丰富地方废物回收机构管理经验能起到不少的促进作用。

地方废物回收机构管理系统能够通过互联网得到广泛的、全面的宣传,让尽可能多的用户了解和熟知地方废物回收机构管理系统的便捷高效,不仅为用户提供了服务,而且也推广了自己,让更多的用户了解自己。对于地方废物回收机构而言,若拥有自己的系统,通过系统得到更好的管理,同时提升了形象。

三、主要技术

技术名作用
SpringBoot后端框架
Vue前端框架
MySQL数据库

四、系统设计(部分)

4.1、主要功能模块设计         

五、功能截图

5.1、管理员功能模块

管理员登录系统后,可以对首页、个人中心、员工管理、员工请假管理、销假申请管理、工作日志管理、员工工资管理、员工任务管理、任务汇报管理、设备信息管理、设备借用管理、设备归还管理、设备报修管理、维修入库管理、员工打卡管理、员工评价管理、回收价格管理、宿舍信息管理、宿舍入住管理、宿舍搬出管理、管理员管理、系统管理等功能进行相应的操作管理,如图5-2所示。

图5-2管理员功能界面图

员工管理

图5-3员工管理界面图

  

员工请假管理

图5-4员工请假管理界面图

销假申请管理 

图5-5销假申请管理界面图

工作日志管理

图5-6工作日志管理界面图

员工工资管理

图5-7员工工资管理界面图

设备信息管理

图5-8设备信息管理界面图

设备借用管理

图5-9设备借用管理界面图

设备归还管理

图5-10设备归还管理界面图

设备报修管理

图5-11设备报修管理界面图

员工打卡管理

图5-12员工打卡管理界面图

回收价格管理

图5-13回收价格管理界面图

宿舍信息管理

图5-14宿舍信息管理界面图

宿舍入住管理

图5-15宿舍入住管理界面图

5.2、员工功能模块

员工登录进入地方废物回收机构管理系统可以对首页、个人中心、员工请假管理、销假申请管理、工作日志管理、员工工资管理、员工任务管理、任务汇报管理、设备信息管理、设备借用管理、设备归还管理、设备报修管理、维修入库管理、员工打卡管理、员工评价管理、回收价格管理、宿舍入住管理、宿舍搬出管理等功能进行相应操作,如图5-16所示。

图5-16员工功能界面图

个人中心

图5-17个人中心界面图

员工请假管理 图5-18员工请假管理界面图

工作日志管理

图5-19工作日志管理界面图  

设备信息管理

图5-20设备信息管理界面图

回收价格管理

图5-21回收价格管理界面图

这里功能太多,就不一一展示啦~

六、数据库设计(部分)

ER图是由实体及其关系构成的图,通过E/R图可以清楚地描述系统涉及到的实体之间的相互关系。在系统中对一些主要的几个关键实体如下图:

(1)工作日志管理E/R图如下所示:

图6-1工作志管理E/R图

 (2)设备信息管理E/R图如下所示:

图6-2设备信息管理E/R图

七、代码参考

package com.controller;import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Map;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Date;
import java.util.List;
import javax.servlet.http.HttpServletRequest;import com.utils.ValidatorUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.format.annotation.DateTimeFormat;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.annotation.IgnoreAuth;import com.entity.GongzuorizhiEntity;
import com.entity.view.GongzuorizhiView;import com.service.GongzuorizhiService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MD5Util;
import com.utils.MPUtil;
import com.utils.CommonUtil;
import java.io.IOException;/*** 工作日志* 后端接口* @author * @email * @date 2022-03-27 11:46:08*/
@RestController
@RequestMapping("/gongzuorizhi")
public class GongzuorizhiController {@Autowiredprivate GongzuorizhiService gongzuorizhiService;/*** 后端列表*/@RequestMapping("/page")public R page(@RequestParam Map<String, Object> params,GongzuorizhiEntity gongzuorizhi,HttpServletRequest request){String tableName = request.getSession().getAttribute("tableName").toString();if(tableName.equals("yuangong")) {gongzuorizhi.setYuangonggonghao((String)request.getSession().getAttribute("username"));}EntityWrapper<GongzuorizhiEntity> ew = new EntityWrapper<GongzuorizhiEntity>();PageUtils page = gongzuorizhiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, gongzuorizhi), params), params));return R.ok().put("data", page);}/*** 前端列表*/@IgnoreAuth@RequestMapping("/list")public R list(@RequestParam Map<String, Object> params,GongzuorizhiEntity gongzuorizhi, HttpServletRequest request){EntityWrapper<GongzuorizhiEntity> ew = new EntityWrapper<GongzuorizhiEntity>();PageUtils page = gongzuorizhiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, gongzuorizhi), params), params));return R.ok().put("data", page);}/*** 列表*/@RequestMapping("/lists")public R list( GongzuorizhiEntity gongzuorizhi){EntityWrapper<GongzuorizhiEntity> ew = new EntityWrapper<GongzuorizhiEntity>();ew.allEq(MPUtil.allEQMapPre( gongzuorizhi, "gongzuorizhi")); return R.ok().put("data", gongzuorizhiService.selectListView(ew));}/*** 查询*/@RequestMapping("/query")public R query(GongzuorizhiEntity gongzuorizhi){EntityWrapper< GongzuorizhiEntity> ew = new EntityWrapper< GongzuorizhiEntity>();ew.allEq(MPUtil.allEQMapPre( gongzuorizhi, "gongzuorizhi")); GongzuorizhiView gongzuorizhiView =  gongzuorizhiService.selectView(ew);return R.ok("查询工作日志成功").put("data", gongzuorizhiView);}/*** 后端详情*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") Long id){GongzuorizhiEntity gongzuorizhi = gongzuorizhiService.selectById(id);return R.ok().put("data", gongzuorizhi);}/*** 前端详情*/@IgnoreAuth@RequestMapping("/detail/{id}")public R detail(@PathVariable("id") Long id){GongzuorizhiEntity gongzuorizhi = gongzuorizhiService.selectById(id);return R.ok().put("data", gongzuorizhi);}/*** 后端保存*/@RequestMapping("/save")public R save(@RequestBody GongzuorizhiEntity gongzuorizhi, HttpServletRequest request){gongzuorizhi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(gongzuorizhi);gongzuorizhiService.insert(gongzuorizhi);return R.ok();}/*** 前端保存*/@RequestMapping("/add")public R add(@RequestBody GongzuorizhiEntity gongzuorizhi, HttpServletRequest request){gongzuorizhi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(gongzuorizhi);gongzuorizhiService.insert(gongzuorizhi);return R.ok();}/*** 修改*/@RequestMapping("/update")public R update(@RequestBody GongzuorizhiEntity gongzuorizhi, HttpServletRequest request){//ValidatorUtils.validateEntity(gongzuorizhi);gongzuorizhiService.updateById(gongzuorizhi);//全部更新return R.ok();}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Long[] ids){gongzuorizhiService.deleteBatchIds(Arrays.asList(ids));return R.ok();}/*** 提醒接口*/@RequestMapping("/remind/{columnName}/{type}")public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request, @PathVariable("type") String type,@RequestParam Map<String, Object> map) {map.put("column", columnName);map.put("type", type);if(type.equals("2")) {SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");Calendar c = Calendar.getInstance();Date remindStartDate = null;Date remindEndDate = null;if(map.get("remindstart")!=null) {Integer remindStart = Integer.parseInt(map.get("remindstart").toString());c.setTime(new Date()); c.add(Calendar.DAY_OF_MONTH,remindStart);remindStartDate = c.getTime();map.put("remindstart", sdf.format(remindStartDate));}if(map.get("remindend")!=null) {Integer remindEnd = Integer.parseInt(map.get("remindend").toString());c.setTime(new Date());c.add(Calendar.DAY_OF_MONTH,remindEnd);remindEndDate = c.getTime();map.put("remindend", sdf.format(remindEndDate));}}Wrapper<GongzuorizhiEntity> wrapper = new EntityWrapper<GongzuorizhiEntity>();if(map.get("remindstart")!=null) {wrapper.ge(columnName, map.get("remindstart"));}if(map.get("remindend")!=null) {wrapper.le(columnName, map.get("remindend"));}String tableName = request.getSession().getAttribute("tableName").toString();if(tableName.equals("yuangong")) {wrapper.eq("yuangonggonghao", (String)request.getSession().getAttribute("username"));}int count = gongzuorizhiService.selectCount(wrapper);return R.ok().put("count", count);}}

八、技术交流

大家点赞、收藏、关注、评论啦 、查看文章结尾👇🏻获取联系方式👇🏻

精彩专栏推荐订阅:在下方专栏👇🏻👇🏻👇🏻👇🏻

Java项目精品实战案例(300套)

 ​​​​

http://www.lryc.cn/news/105202.html

相关文章:

  • 【SAP MII学习】Day01--Overview, Security Services, and Workbench
  • 枚举类常见用法,A Guide to Java Enums
  • Vue Baidu Map--vue引入百度地图
  • 使用Express部署Vue项目
  • 344.翻转字符串+387.字符串中的第一个唯一字符
  • 安装mmcv
  • 什么是服务网格?
  • 8.1作业
  • linux-安全技术
  • 如何在免费版 pycharm 中使用 github copilot (chatGPT)?
  • SSD202D-UBOOT-FDT-获取DTB
  • 【Maven】Setting文件分享
  • 使用requestAnimationFrame 实现倒计时功能js(简单秒数倒计时)
  • jenkins通过sshPut传输文件的时候,报错Permission denied的SftpException
  • 【Python】数据分析+数据挖掘——探索Pandas中的数据筛选
  • [数据集][目标检测]天牛数据集目标检测数据集VOC格式3050张
  • python_day16_设计模式
  • uniapp开发小程序-实现中间凸起的 tabbar
  • Vue引入与Vue拦截原理
  • 2023年电赛---运动目标控制与自动追踪系统(E题)OpenMV方案
  • 6G内存运行Llama2-Chinese-7B-chat模型
  • 项目经理必备-项目总体计划模板-制式文件,可直接填写使用-公司可用
  • 正则表达式系列|(以xx开头xx结尾提取、切分、替换)
  • 金融学复习博迪(第1-5章)
  • 【前端知识】React 基础巩固(三十七)——自定义connect高阶组件
  • 前端PDF导出,使用html2Canvas和jsPDF插件
  • Android 设备兼容性使用详解
  • vnc加固
  • Windows下Nginx安装与配置教程
  • Iterator迭代器和Generator生成器