当前位置:   article > 正文

基于Springboot+Vue实现智慧停车场管理系统_spring boot 停车场管理系统源码

spring boot 停车场管理系统源码

作者主页:编程指南针

作者简介:Java领域优质创作者、CSDN博客专家 、CSDN内容合伙人、掘金特邀作者、阿里云博客专家、51CTO特邀作者、多年架构师设计经验、腾讯课堂常驻讲师

主要内容:Java项目、Python项目、前端项目、人工智能与大数据、简历模板、学习资料、面试题库、技术互助

收藏点赞不迷路  关注作者有好处

文末获取源码 

项目编号:BS-XX-175

一,环境介绍

语言环境:Java:  jdk1.8

数据库:Mysql: mysql5.7

应用服务器:Tomcat:  tomcat8.5.31

开发工具:IDEA或eclipse

开发技术:Springboot+Vue+车牌识别OCR

二,项目简介

本项目主要基于Springboot+Vue开发实现了一个多功能智慧停车场服务管理系统。系统可以根据不同的单位设置不同的停车场,根据各停车场分类实现车牌自动识、自动计时扣费等相关功能,并根据车辆是包月车还是临时车来分类别管理。用户主要分为系统管理员和各单管理员,分配的各单位管理员登录后可以管理自己单的停车场信息以及车辆停放计费信息等。同时系统还提供完美的数据统计功能,以及基本的用户管理、角色管理、停车场管理、汽车管理、缴费信息管理、车辆识别管理、菜单管理和日志记录管理等功能。

三,系统展示

系统登录:

后台管理首页

合作单位管理

账户管理

停车场管理

车辆管理

扫描识别车辆

停车记录

缴费信息

菜单管理

四,核心代码展示

  1. package com.park.service.sys.impl;
  2. import com.park.common.constant.Constant;
  3. import com.park.common.utils.PageUtils;
  4. import com.park.dao.sys.SysRoleMapper;
  5. import com.park.entity.sys.SysRoleEntity;
  6. import com.park.service.sys.SysRoleMenuService;
  7. import com.park.service.sys.SysRoleService;
  8. import com.park.service.sys.SysUserRoleService;
  9. import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  10. import com.baomidou.mybatisplus.core.metadata.IPage;
  11. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  12. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  13. import org.apache.commons.lang.StringUtils;
  14. import org.springframework.beans.factory.annotation.Autowired;
  15. import org.springframework.stereotype.Service;
  16. import org.springframework.transaction.annotation.Transactional;
  17. import java.util.*;
  18. /**
  19. * 角色管理
  20. *
  21. * @author Administrator
  22. */
  23. @Service
  24. public class SysRoleServiceImpl extends ServiceImpl<SysRoleMapper, SysRoleEntity> implements SysRoleService {
  25. @Autowired
  26. protected SysRoleMenuService sysRoleMenuService;
  27. @Autowired
  28. protected SysUserRoleService sysUserRoleService;
  29. @Override
  30. public PageUtils selectByPage(Map<String, Object> params) {
  31. long page = Long.parseLong((String) params.get(Constant.PAGE));
  32. long limit = Long.parseLong((String) params.get(Constant.LIMIT));
  33. String roleName = (String) params.get("roleName");
  34. Page<SysRoleEntity> pages = new Page<>(page, limit);
  35. QueryWrapper<SysRoleEntity> wrapper = new QueryWrapper<>();
  36. wrapper.orderByDesc("create_time");
  37. wrapper.like(StringUtils.isNotBlank(roleName), "role_name", roleName);
  38. IPage<SysRoleEntity> list = baseMapper.selectPage(pages, wrapper);
  39. return new PageUtils(list);
  40. }
  41. @Override
  42. public Set<String> getUserRoles(Long userId) {
  43. List<String> roleList = baseMapper.getUserRoles(userId);
  44. //用户权限列表
  45. Set<String> roleSet = new HashSet<>();
  46. for (String roles : roleList) {
  47. if (StringUtils.isBlank(roles)) {
  48. continue;
  49. }
  50. roleSet.addAll(Arrays.asList(roles.trim().split(",")));
  51. }
  52. return roleSet;
  53. }
  54. @Override
  55. @Transactional(rollbackFor = Exception.class)
  56. public void saveRole(SysRoleEntity entity) {
  57. //保存角色
  58. baseMapper.insert(entity);
  59. //保存角色菜单关系
  60. sysRoleMenuService.saveOrUpdate(entity.getRoleId(), entity.getMenuIdList());
  61. }
  62. @Override
  63. @Transactional(rollbackFor = Exception.class)
  64. public void updateRole(SysRoleEntity entity) {
  65. //更新角色
  66. updateById(entity);
  67. //更新角色菜单关系
  68. sysRoleMenuService.saveOrUpdate(entity.getRoleId(), entity.getMenuIdList());
  69. }
  70. @Override
  71. @Transactional(rollbackFor = Exception.class)
  72. public void delete(Long[] ids) {
  73. //删除角色
  74. baseMapper.deleteBatchIds(Arrays.asList(ids));
  75. //删除角色用户关系
  76. sysUserRoleService.deleteByRoleIds(ids);
  77. //删除角色菜单关系
  78. sysRoleMenuService.deleteByRoleIds(ids);
  79. }
  80. @Override
  81. public List<SysRoleEntity> getRoleList(long type){
  82. return baseMapper.getRoleList(type);
  83. }
  84. }
  1. package com.park.modules.controller.sys;
  2. import com.park.common.annotation.SysLog;
  3. import com.park.common.utils.PageUtils;
  4. import com.park.common.utils.R;
  5. import com.park.common.validator.Assert;
  6. import com.park.common.validator.ValidatorUtils;
  7. import com.park.entity.sys.*;
  8. import com.park.modules.base.AbstractController;
  9. import com.park.service.sys.AgentInfoService;
  10. import com.park.shiro.ShiroUtils;
  11. import io.swagger.annotations.ApiOperation;
  12. import org.apache.commons.lang.ArrayUtils;
  13. import org.apache.shiro.authz.annotation.RequiresPermissions;
  14. import org.springframework.beans.factory.annotation.Autowired;
  15. import org.springframework.beans.factory.annotation.Value;
  16. import org.springframework.web.bind.annotation.*;
  17. import org.springframework.web.multipart.MultipartFile;
  18. import java.util.*;
  19. /*
  20. 1.控制器所有的方法都是返回json格式的数据,通过RestController注解实现
  21. 2.函数的接口名称是通过RequestMapping,PostMapping,GetMapping等注解实现
  22. 3.权限是通过RequiresPermissions实现,权限的名称是通过菜单配置的
  23. 4.文件的上传路径是通过Value注解读取配置文件的参数
  24. 5.所有方法的返回值都是通过R类返回的
  25. 6.所有的控制器都继承AbstractController,通过shiro返回当前登录的用户信息
  26. 7.所有的控制器都是通过Autowired注解返回数据库操作的类
  27. */
  28. @RestController
  29. @RequestMapping("/sys/agent")
  30. public class AgentInfoController extends AbstractController {
  31. @Autowired
  32. private AgentInfoService agentInfoService;
  33. @Value("${upload.absPath}")
  34. String absPath;
  35. @Value("${upload.excel}")
  36. String excel;
  37. @PostMapping("/list")
  38. @RequiresPermissions("sys:agent:list")
  39. public R list(@RequestBody Map<String, Object> params) {
  40. if(getUser().getUserType()==2){
  41. return R.error("对不起,单位管理员没有权限。");
  42. }
  43. PageUtils pageList = agentInfoService.getPageList(params);
  44. return R.ok().put("data", pageList);
  45. }
  46. @PostMapping("/save")
  47. @RequiresPermissions("sys:agent:save")
  48. public R saveOrUpdate(@RequestBody AgentInfoEntity agent){
  49. ValidatorUtils.validateEntity(agent);
  50. agentInfoService.saveOrUpdate(agent);
  51. return R.ok();
  52. }
  53. @ApiOperation("单位信息")
  54. @GetMapping("/myInfo")
  55. public R myInfo() {
  56. AgentInfoEntity agent = agentInfoService.getEntityById(getUser().getAgentId());
  57. Assert.isNull(agent, "系统中没有该单位");
  58. return R.ok().put("data", agent);
  59. }
  60. @ApiOperation("获取单位信息")
  61. @GetMapping("/info/{agentId}")
  62. @RequiresPermissions("sys:agent:info")
  63. public R info(@PathVariable("agentId") Long agentId) {
  64. AgentInfoEntity agent = agentInfoService.getEntityById(agentId);
  65. Assert.isNull(agent, "系统中没有该单位");
  66. return R.ok().put("data", agent);
  67. }
  68. @SysLog("添加单位")
  69. @PostMapping("/add")
  70. @ApiOperation("添加单位")
  71. @RequiresPermissions("sys:agent:add")
  72. public R add(@RequestBody AgentInfoEntity entity,MultipartFile file1) {
  73. ValidatorUtils.validateEntity(entity);
  74. entity.setRegisterTime(new Date());
  75. SysUserEntity user = ShiroUtils.getUser();
  76. entity.setManagerName(user.getUsername());
  77. try {
  78. agentInfoService.save(entity);
  79. }catch(Exception e) {
  80. return R.error("存在重复的单位编号");
  81. }
  82. return R.ok();
  83. }
  84. @SysLog("编辑单位")
  85. @PutMapping("/edit")
  86. @ApiOperation("编辑单位")
  87. @RequiresPermissions("sys:agent:info")
  88. public R edit(@RequestBody AgentInfoEntity entity) {
  89. ValidatorUtils.validateEntity(entity);
  90. AgentInfoEntity agent = agentInfoService.getEntityById(entity.getAgentId());
  91. if(entity.getAgentIcon()==null || entity.getAgentIcon().equals("")){
  92. entity.setAgentIcon(agent.getAgentIcon());
  93. }
  94. entity.setRegisterTime(agent.getRegisterTime());
  95. entity.setManagerName(ShiroUtils.getUser().getUsername());
  96. agentInfoService.updateById(entity);
  97. return R.ok();
  98. }
  99. @SysLog("修改单位信息")
  100. @PutMapping("/editMyInfo")
  101. @ApiOperation("编辑单位")
  102. public R editMyInfo(@RequestBody AgentInfoEntity entity) {
  103. agentInfoService.editMyInfo(entity);
  104. return R.ok();
  105. }
  106. @SysLog("删除单位")
  107. @DeleteMapping("/del")
  108. @ApiOperation("删除单位")
  109. @RequiresPermissions("sys:agent:del")
  110. public R del(@RequestBody Long[] ids) {
  111. if (ArrayUtils.contains(ids, getAgentId())) {
  112. return R.error("当前单位不能删除");
  113. }
  114. agentInfoService.removeByIds(Arrays.asList(ids));
  115. return R.ok();
  116. }
  117. @PostMapping("/exportExcel")
  118. @RequiresPermissions("sys:agent:list")
  119. //导出单位信息
  120. public R expInit(@RequestBody Map<String, Object> params) throws Exception{
  121. List<AgentInfoEntity> agentList = agentInfoService.getExcelList(params);
  122. String path=excel;
  123. path=new com.park.utils.ExportToExcel().ExpAgent(agentList,path, 3);
  124. return R.ok().put("data",path);
  125. }
  126. }
  1. package com.park.modules.controller.sys;
  2. import com.park.common.annotation.SysLog;
  3. import com.park.common.utils.R;
  4. import com.park.common.validator.ValidatorUtils;
  5. import com.park.entity.sys.AgentInfoEntity;
  6. import com.park.entity.sys.CameraInfoVo;
  7. import com.park.entity.sys.CarParkVo;
  8. import com.park.entity.sys.SysUserEntity;
  9. import com.park.modules.base.AbstractController;
  10. import com.park.service.sys.AgentInfoService;
  11. import com.park.service.sys.CameraInfoService;
  12. import com.park.service.sys.CarInfoService;
  13. import com.park.service.sys.CarParkService;
  14. import com.park.shiro.ShiroUtils;
  15. import io.swagger.annotations.ApiOperation;
  16. import org.apache.shiro.authz.annotation.RequiresPermissions;
  17. import org.springframework.beans.factory.annotation.Autowired;
  18. import org.springframework.web.bind.annotation.*;
  19. import javax.servlet.http.HttpServletRequest;
  20. import java.util.*;
  21. @RestController
  22. @RequestMapping("/sys/camera")
  23. public class CameraController extends AbstractController {
  24. @Autowired
  25. private CameraInfoService cameraService;
  26. @Autowired
  27. private CarParkService parkService;
  28. @PostMapping("/list")
  29. @RequiresPermissions("sys:camera:list")
  30. public R list(@RequestBody Map<String, Object> params) {
  31. List<CameraInfoVo> cameraList = cameraService.getList(params);
  32. return R.ok().put("data", cameraList);
  33. }
  34. @ApiOperation("获取摄像头信息")
  35. @GetMapping("/info/{cameraInfoId}")
  36. @RequiresPermissions("sys:camera:info")
  37. public R info(@PathVariable("cameraInfoId") Long cameraInfoId) {
  38. CameraInfoVo camera = null;
  39. if(cameraInfoId>0) {
  40. camera = cameraService.getById(cameraInfoId);
  41. }
  42. return R.ok().put("data", camera);
  43. }
  44. @SysLog("添加摄像头")
  45. @PostMapping("/add")
  46. @ApiOperation("添加摄像头")
  47. @RequiresPermissions("sys:camera:add")
  48. public R add(@RequestBody CameraInfoVo entity, HttpServletRequest request){
  49. CarParkVo park = parkService.getById(entity.getCarParkId());
  50. entity.setAgentId(park.getAgentId());
  51. entity.setCreaterTime(new Date());
  52. SysUserEntity user = ShiroUtils.getUser();
  53. entity.setCreater(user.getUsername());
  54. try {
  55. cameraService.save(entity);
  56. }catch (Exception e){
  57. return R.error("IP地址重复。");
  58. }
  59. return R.ok();
  60. }
  61. @SysLog("编辑摄像头")
  62. @PutMapping("/edit")
  63. @ApiOperation("编辑摄像头")
  64. @RequiresPermissions("sys:camera:info")
  65. public R edit(@RequestBody CameraInfoVo entity, HttpServletRequest request) throws Exception {
  66. ValidatorUtils.validateEntity(entity);
  67. CameraInfoVo user = cameraService.getById(entity.getCameraInfoId());
  68. entity.setAgentId(user.getAgentId());
  69. entity.setCreater(user.getCreater());
  70. entity.setCreaterTime(user.getCreaterTime());
  71. try {
  72. cameraService.updateById(entity);
  73. }catch (Exception e){
  74. return R.error("IP地址重复。");
  75. }
  76. return R.ok();
  77. }
  78. @SysLog("删除摄像头")
  79. @DeleteMapping("/del")
  80. @ApiOperation("删除摄像头")
  81. @RequiresPermissions("sys:camera:del")
  82. public R del(@RequestBody Long[] ids) {
  83. cameraService.removeByIds(Arrays.asList(ids));
  84. return R.ok();
  85. }
  86. }

五,相关作品展示

基于Java开发、Python开发、PHP开发、C#开发等相关语言开发的实战项目

基于Nodejs、Vue等前端技术开发的前端实战项目

基于微信小程序和安卓APP应用开发的相关作品

基于51单片机等嵌入式物联网开发应用

基于各类算法实现的AI智能应用

基于大数据实现的各类数据管理和推荐系统

 

 

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号