赞
踩
1、项目介绍
使用小区物业管理系统分为管理员和用户、员工三个权限子模块。
管理员所能使用的功能主要有:首页、个人中心、用户管理、员工管理、业主信息管理、费用信息管理、楼房信息管理、报修信息管理、车位信息管理、停车信息管理、投诉编号管理、公告信息管理、部门信息管理等。
用户可以实现;首页、个人中心、业主信息管理、费用信息管理、楼房信息管理、报修信息管理、车位信息管理、停车信息管理、投诉编号管理、公告信息管理等。
员工可以实现;首页、个人中心、楼房信息管理、报修信息管理、投诉编号管理、公告信息管理、部门信息管理等。
2、技术框架
编程语言:Java
架构:B/S(前后端分离)
前端框架:Vue
后端框架:SpringBoot
数据库:MySQL
Maven项目:是
后端运行环境:JDK8+Maven3.5+Idea+MySQL5.6
前端运行环境:Node.js 14.16
3、演示视频
B站视频地址:
java基于springboot+vue前后端分离的小区物业管理系统、物业管理系统,附源码+文档+PPT,适合课程设计、毕业设计
java基于springboot+vue前后端分离的小区物业管理系统、物业管理系统,附源码+文档+PPT,适合课程设计、毕业设计_哔哩哔哩_bilibili
4、项目截图
4.1、首页
4.2、用户注册
4.3、员工注册
4.4、管理员-登录首页
4.5、管理员-个人中心
4.6、管理员-用户管理
4.7、管理员-员工管理
4.8、管理员-业主信息管理
4.9、管理员-费用信息管理
4.10、管理员-楼房信息管理
4.11、管理员-保修信息管理
4.12、管理员-车位信息管理
4.13、管理员-停车信息管理
4.14、投诉信息管理
4.15、管理员-投诉信息管理
4.16、管理员-部门信息管理
4.17、用户-首页
4.18、员工-首页
5、文档截图
6、代码示例
- 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.CheweixinxiEntity;
- import com.entity.view.CheweixinxiView;
-
- import com.service.CheweixinxiService;
- import com.service.TokenService;
- import com.utils.PageUtils;
- import com.utils.R;
- import com.utils.MD5Util;
- import com.utils.MPUtil;
- import com.utils.CommonUtil;
-
-
- /**
- * 车位信息
- * 后端接口
- * @author
- * @email
- * @date 2021-03-22 17:32:51
- */
- @RestController
- @RequestMapping("/cheweixinxi")
- public class CheweixinxiController {
- @Autowired
- private CheweixinxiService cheweixinxiService;
-
-
-
- /**
- * 后端列表
- */
- @RequestMapping("/page")
- public R page(@RequestParam Map<String, Object> params,CheweixinxiEntity cheweixinxi,
- HttpServletRequest request){
- EntityWrapper<CheweixinxiEntity> ew = new EntityWrapper<CheweixinxiEntity>();
- PageUtils page = cheweixinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, cheweixinxi), params), params));
-
- return R.ok().put("data", page);
- }
-
- /**
- * 前端列表
- */
- @RequestMapping("/list")
- public R list(@RequestParam Map<String, Object> params,CheweixinxiEntity cheweixinxi, HttpServletRequest request){
- EntityWrapper<CheweixinxiEntity> ew = new EntityWrapper<CheweixinxiEntity>();
- PageUtils page = cheweixinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, cheweixinxi), params), params));
- return R.ok().put("data", page);
- }
-
- /**
- * 列表
- */
- @RequestMapping("/lists")
- public R list( CheweixinxiEntity cheweixinxi){
- EntityWrapper<CheweixinxiEntity> ew = new EntityWrapper<CheweixinxiEntity>();
- ew.allEq(MPUtil.allEQMapPre( cheweixinxi, "cheweixinxi"));
- return R.ok().put("data", cheweixinxiService.selectListView(ew));
- }
-
- /**
- * 查询
- */
- @RequestMapping("/query")
- public R query(CheweixinxiEntity cheweixinxi){
- EntityWrapper< CheweixinxiEntity> ew = new EntityWrapper< CheweixinxiEntity>();
- ew.allEq(MPUtil.allEQMapPre( cheweixinxi, "cheweixinxi"));
- CheweixinxiView cheweixinxiView = cheweixinxiService.selectView(ew);
- return R.ok("查询车位信息成功").put("data", cheweixinxiView);
- }
-
- /**
- * 后端详情
- */
- @RequestMapping("/info/{id}")
- public R info(@PathVariable("id") Long id){
- CheweixinxiEntity cheweixinxi = cheweixinxiService.selectById(id);
- return R.ok().put("data", cheweixinxi);
- }
-
- /**
- * 前端详情
- */
- @RequestMapping("/detail/{id}")
- public R detail(@PathVariable("id") Long id){
- CheweixinxiEntity cheweixinxi = cheweixinxiService.selectById(id);
- return R.ok().put("data", cheweixinxi);
- }
-
-
-
-
- /**
- * 后端保存
- */
- @RequestMapping("/save")
- public R save(@RequestBody CheweixinxiEntity cheweixinxi, HttpServletRequest request){
- cheweixinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
- //ValidatorUtils.validateEntity(cheweixinxi);
- cheweixinxiService.insert(cheweixinxi);
- return R.ok();
- }
-
- /**
- * 前端保存
- */
- @RequestMapping("/add")
- public R add(@RequestBody CheweixinxiEntity cheweixinxi, HttpServletRequest request){
- cheweixinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
- //ValidatorUtils.validateEntity(cheweixinxi);
- cheweixinxiService.insert(cheweixinxi);
- return R.ok();
- }
-
- /**
- * 修改
- */
- @RequestMapping("/update")
- public R update(@RequestBody CheweixinxiEntity cheweixinxi, HttpServletRequest request){
- //ValidatorUtils.validateEntity(cheweixinxi);
- cheweixinxiService.updateById(cheweixinxi);//全部更新
- return R.ok();
- }
-
-
- /**
- * 删除
- */
- @RequestMapping("/delete")
- public R delete(@RequestBody Long[] ids){
- cheweixinxiService.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<CheweixinxiEntity> wrapper = new EntityWrapper<CheweixinxiEntity>();
- if(map.get("remindstart")!=null) {
- wrapper.ge(columnName, map.get("remindstart"));
- }
- if(map.get("remindend")!=null) {
- wrapper.le(columnName, map.get("remindend"));
- }
-
-
- int count = cheweixinxiService.selectCount(wrapper);
- return R.ok().put("count", count);
- }
-
-
-
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。