当前位置:   article > 正文

基于SSM实现的小区物业管理系统_物业管理系统的实现

物业管理系统的实现

 博主介绍:✌在职Java研发工程师、专注于程序设计、源码分享、技术交流、专注于Java技术领域和毕业设计
温馨提示:文末有 CSDN 平台官方提供的老师 Wechat / QQ 名片 :)

项目名称

基于SSM实现的小区物业管理系统

演示视频

=基于SSM实现的小区物业管理系统_哔哩哔哩_bilibili

系统介绍

3、系统总体设计

3.1 总体结构设计

系统总体架构设计是根据前期做出的详细需求分析,明确本系统采用基于SSM框架,并且进行合理的规划和总结后得出的结果,也就是相当于将总的复杂的设计任务规划为小的简单的设计任务,通过对这些小的简单的设计任务的实现来满足整个系统的总设计。本系统采用模块化的设计原理将整个系统分为多个模块,模块下又具体分为多个具体的功能,利用这个原理,得出小区物业管理系统的总体架构图。

本小区物业管理系统主要包括以下八大模块:房屋管理模块、业主管理模块

、停车场管理模块、报修管理模块、投诉管理模块、员工管理模块、设施管理模块。系统架构设计图,如图3.1所示:

图3.1 系统架构图

3.2 模块详细设计

1、房屋管理模块

房屋管理模块是小区物业管理系统的主要功能之一,同时与之对应的功能也是很多,所以本小区物业管理系统的开发将会把房屋管理放在首位,系统的其他功能将会以此展开。

房屋管理模块不仅包括房屋基本信息的管理,同时也会涉及到楼房管理、房型管理、业主管理三个部分。楼房管理模块是管理小区内所有的楼栋,包括其名称以及备注等相关信息;房型管理是小区内所有房屋的户型管理,包括房屋的类型、面积、使用情况、房屋数量等信息;房屋管理则是在楼房管理和房型管理上对具体的房屋进行的管理,包括房屋的业主、使用情况、房屋类型等信息进行统一管理。具体如图3.2所示:

图 3.2 房屋模块架构图

2、业主管理模块

业主管理模块只要是本系统对业主信息的综合管理,主要功能分为两部分:管理员管理业主和业主维护个人信息。在管理员后台,系统的管理员可以对业主用户进行相应的增删改查,同时可以查询现有业主的所有基本信息,包括个人的基本信息(姓名、电话、身份证号码等)和房产信息(具体的房屋信息)。具体的架构图3.3如所示。

图3.3 停车场管理架构图

3、停车场管理模块

停车场管理模块主要是用于小区物业对于停车场能够合理规划的功能,同时记录停车场的具体使用情况和停车场中具体停车位的状态(已售或者未售),最大程度的使停车场能够进行系统的管理,减少小区物业对于停车场付出的巨大人力物力。具体的停车场管理图如图3.4所示:

图3.4 停车场管理架构图

4、收费管理模块

收费管理模块是针对小区物业和业主双方的管理模块,业主可以通过该模块进行相应费用的缴纳,小区物业也可以对其进行合理的管理和统计。收费的项目主要包括:物业费、水电费、煤气费。

鉴于技术的原因,个人并不能获得支付端口,从而无法实现在线支付相应的集成支付系统,而是采用线下转账的支付方式缴纳相关的费用,小区缴纳固定费用后可以将相关的缴纳支付凭证以截图的方式上传到系统,管理员会根据小区物业的流水账单对其进行相应的审核,确认是否已缴纳完成。具体的流程图如图3.5所示:

图3.5 收费模块流程图

5、报修管理模块

报修管理模块主要针对解决业主对于自身房屋设备的维修管理,在本系统中,业主登录后可以发送对应的报修消息,管理员后台会实时接收并且对相应的请求进行处理。

报修管理模块也是小区物业管理系统中重要的组成部分,同时它将会是该系统使用最频繁的功能之一。发起者为业主,业主同构登录系统后发送维修申请给管理员,管理员会根据业主发送的申请进行处理,包括派遣具体的维修工作人员,报修完成后管理员会将修改状态更改为完成。具体报修模块的流程图如图3.6所示:

图3.6 报修模块流程图

6、投诉管理模块

投诉管理模块主要适用于业主,期望使业主能够合法的使用监督权监督小区物业的一系列服务,减少和不断改进小区物业的缺陷,使其小区物业能够更加快捷、更加方便的服务业主。

该投诉管理模块包含两部分:一部分是业主的投诉,另一部分是管理员对此做出的反馈。活动的发起者是业主,业主通过登录系统后可以添加投诉信息,具体的内容包括:投诉时间、投诉内容、投诉事件等,业主在线发送请求以后,管理员会接收到业主的请求,并对所投诉的内容进行相关的处理,最终反馈给业主。具体的流程图如图3.7所示:

图3.7 投诉模块流程图

7、员工管理模块

员工管理模块主要是小区物业对于内部员工的管理,以便能够更加合理的安排员工的具体工作,目前来说,国内的大部分小区还会存在大量的工作人员,因此员工的管理工作也是小区物业工作中的关键一步。具体如图3.8所示。

具体的工作流程如下:系统管理员登录小区物业管理系统后台后,可针对实际情况对新入职的物业工作人员进行登记,同时还会对系统中已经存在的小区物业工作人员的信息进行删除、修改和查询。具体流程图如图3.9所示。

图3.8 人员管理模块架构图

图3.9 人员管理模块流程图

8、设施管理模块

设施管理模块是针对小区物业来合理规划小区中存在的一些列公共设施的模块,主要包括:设施的名称、投放数量、投放时间等等,期望能够更加清晰的安排设施的投放以及安置情况。具体如图3.10所示。

图3.10 设施管理模块架构图

系统截图

环境需要

1.运行环境:最好是java jdk 1.8,我们在这个平台上运行的。其他版本理论上也可以。
2.IDE环境:IDEA,Eclipse,Myeclipse都可以。推荐IDEA;
3.tomcat环境:Tomcat 7.x,8.x,9.x版本均可
4.硬件环境:windows 7/8/10 1G内存以上;或者 Mac OS; 
5.数据库:MySql 5.7版本;
6.是否Maven项目:否;

技术栈

1. 后端:Spring+SpringMVC+Mybatis
2. 前端:JSP+CSS+JavaScript+jQuery

使用说明

1. 使用Navicat或者其它工具,在mysql中创建对应名称的数据库,并导入项目的sql文件;
2. 使用IDEA/Eclipse/MyEclipse导入项目,Eclipse/MyEclipse导入时,若为maven项目请选择maven;
若为maven项目,导入成功后请执行maven clean;maven install命令,然后运行;
3. 将项目中springmvc-servlet.xml配置文件中的数据库配置改为自己的配置;
4. 运行项目,在浏览器中输入http://localhost:8080/ 登录

 用户管理控制层:

  1. package com.houserss.controller;
  2. import javax.servlet.http.HttpSession;
  3. import org.apache.commons.lang3.StringUtils;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.stereotype.Controller;
  6. import org.springframework.web.bind.annotation.RequestMapping;
  7. import org.springframework.web.bind.annotation.RequestMethod;
  8. import org.springframework.web.bind.annotation.RequestParam;
  9. import org.springframework.web.bind.annotation.ResponseBody;
  10. import com.houserss.common.Const;
  11. import com.houserss.common.Const.Role;
  12. import com.houserss.common.ServerResponse;
  13. import com.houserss.pojo.User;
  14. import com.houserss.service.IUserService;
  15. import com.houserss.service.impl.UserServiceImpl;
  16. import com.houserss.util.MD5Util;
  17. import com.houserss.util.TimeUtils;
  18. import com.houserss.vo.DeleteHouseVo;
  19. import com.houserss.vo.PageInfoVo;
  20. /**
  21. * Created by admin
  22. */
  23. @Controller
  24. @RequestMapping("/user/")
  25. public class UserController {
  26. @Autowired
  27. private IUserService iUserService;
  28. /**
  29. * 用户登录
  30. * @param username
  31. * @param password
  32. * @param session
  33. * @return
  34. */
  35. @RequestMapping(value = "login.do",method = RequestMethod.POST)
  36. @ResponseBody
  37. public ServerResponse<User> login(User user,String uvcode, HttpSession session){
  38. String code = (String)session.getAttribute("validationCode");
  39. if(StringUtils.isNotBlank(code)) {
  40. if(!code.equalsIgnoreCase(uvcode)) {
  41. return ServerResponse.createByErrorMessage("验证码不正确");
  42. }
  43. }
  44. ServerResponse<User> response = iUserService.login(user.getUsername(),user.getPassword());
  45. if(response.isSuccess()){
  46. session.setAttribute(Const.CURRENT_USER,response.getData());
  47. }
  48. return response;
  49. }
  50. }

管理员管理控制层:

  1. package com.sxl.controller.admin;
  2. import java.util.List;
  3. import java.util.Map;
  4. import javax.servlet.http.HttpServletRequest;
  5. import org.springframework.http.ResponseEntity;
  6. import org.springframework.stereotype.Controller;
  7. import org.springframework.ui.Model;
  8. import org.springframework.web.bind.annotation.RequestMapping;
  9. import com.sxl.controller.MyController;
  10. @Controller("adminController")
  11. @RequestMapping(value = "/admin")
  12. public class AdminController extends MyController {
  13. @RequestMapping(value = "/index")
  14. public String frame(Model model, HttpServletRequest request)throws Exception {
  15. return "/admin/index";
  16. }
  17. @RequestMapping(value = "/main")
  18. public String main(Model model, HttpServletRequest request)throws Exception {
  19. return "/admin/main";
  20. }
  21. @RequestMapping(value = "/tj1")
  22. public String tj1(Model model, HttpServletRequest request)throws Exception {
  23. String sql="select DATE_FORMAT(insertDate,'%Y-%m-%d') dates,sum(allPrice) price from t_order order by DATE_FORMAT(insertDate,'%Y-%m-%d') desc";
  24. List<Map> list = db.queryForList(sql);
  25. model.addAttribute("list", list);
  26. System.out.println(list);
  27. return "/admin/tj/tj1";
  28. }
  29. @RequestMapping(value = "/password")
  30. public String password(Model model, HttpServletRequest request)throws Exception {
  31. return "/admin/password";
  32. }
  33. @RequestMapping(value = "/changePassword")
  34. public ResponseEntity<String> loginSave(Model model,HttpServletRequest request,String oldPassword,String newPassword) throws Exception {
  35. Map admin = getAdmin(request);
  36. if(oldPassword.equals(admin.get("password").toString())){
  37. String sql="update t_admin set password=? where id=?";
  38. db.update(sql, new Object[]{newPassword,admin.get("id")});
  39. return renderData(true,"1",null);
  40. }else{
  41. return renderData(false,"1",null);
  42. }
  43. }
  44. }

修改密码业务逻辑:

  1. package com.sxl.controller.admin;
  2. import java.util.Map;
  3. import javax.servlet.http.HttpServletRequest;
  4. import org.springframework.http.ResponseEntity;
  5. import org.springframework.stereotype.Controller;
  6. import org.springframework.ui.Model;
  7. import org.springframework.web.bind.annotation.RequestMapping;
  8. import com.sxl.controller.MyController;
  9. @Controller("userController")
  10. @RequestMapping(value = "/user")
  11. public class UserController extends MyController {
  12. @RequestMapping(value = "/index")
  13. public String frame(Model model, HttpServletRequest request)throws Exception {
  14. return "/user/index";
  15. }
  16. @RequestMapping(value = "/main")
  17. public String main(Model model, HttpServletRequest request)throws Exception {
  18. return "/user/main";
  19. }
  20. @RequestMapping(value = "/password")
  21. public String password(Model model, HttpServletRequest request)throws Exception {
  22. return "/user/password";
  23. }
  24. @RequestMapping(value = "/changePassword")
  25. public ResponseEntity<String> loginSave(Model model,HttpServletRequest request,String oldPassword,String newPassword) throws Exception {
  26. Map user = getUser(request);
  27. if(oldPassword.equals(user.get("password").toString())){
  28. String sql="update t_user set password=? where id=?";
  29. db.update(sql, new Object[]{newPassword,user.get("id")});
  30. return renderData(true,"1",null);
  31. }else{
  32. return renderData(false,"1",null);
  33. }
  34. }
  35. @RequestMapping(value = "/mine")
  36. public String mine(Model model, HttpServletRequest request)throws Exception {
  37. Map user =getUser(request);Map map = db.queryForMap("select * from t_user where id=?",new Object[]{user.get("id")});model.addAttribute("map", map); return "/user/mine";
  38. }
  39. @RequestMapping(value = "/mineSave")
  40. public ResponseEntity<String> mineSave(Model model,HttpServletRequest request,Long id
  41. ,String username,String password,String name,String gh,String mobile) throws Exception{
  42. int result = 0;
  43. String sql="update t_user set name=?,gh=?,mobile=? where id=?";
  44. result = db.update(sql, new Object[]{name,gh,mobile,id});
  45. if(result==1){
  46. return renderData(true,"操作成功",null);
  47. }else{
  48. return renderData(false,"操作失败",null);
  49. }
  50. }
  51. }

通用管理模块:

  1. package com.sxl.controller;
  2. import java.nio.charset.Charset;
  3. import java.util.Locale;
  4. import java.util.ResourceBundle;
  5. import javax.servlet.http.HttpServletRequest;
  6. import org.apache.commons.lang.StringUtils;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.http.HttpHeaders;
  9. import org.springframework.http.HttpStatus;
  10. import org.springframework.http.MediaType;
  11. import org.springframework.http.ResponseEntity;
  12. import com.sxl.util.JacksonJsonUtil;
  13. import com.sxl.util.StringUtil;
  14. import com.sxl.util.SystemProperties;
  15. public class BaseController {
  16. public static final Long EXPIRES_IN = 1000 * 3600 * 24 * 1L;// 1
  17. @Autowired
  18. private SystemProperties systemProperties;
  19. /**
  20. * 获得配置文件内容
  21. */
  22. public String getConfig(String key) {
  23. return systemProperties.getProperties(key);
  24. }
  25. /**
  26. * 返回服务器地址 like http://192.168.1.1:8441/UUBean/
  27. */
  28. public String getHostUrl(HttpServletRequest request) {
  29. String hostName = request.getServerName();
  30. Integer hostPort = request.getServerPort();
  31. String path = request.getContextPath();
  32. if (hostPort == 80) {
  33. return "http://" + hostName + path + "/";
  34. } else {
  35. return "http://" + hostName + ":" + hostPort + path + "/";
  36. }
  37. }
  38. /***
  39. * 获取当前的website路径 String
  40. */
  41. public static String getWebSite(HttpServletRequest request) {
  42. String returnUrl = request.getScheme() + "://"
  43. + request.getServerName();
  44. if (request.getServerPort() != 80) {
  45. returnUrl += ":" + request.getServerPort();
  46. }
  47. returnUrl += request.getContextPath();
  48. return returnUrl;
  49. }
  50. /**
  51. * 初始化HTTP头.
  52. *
  53. * @return HttpHeaders
  54. */
  55. public HttpHeaders initHttpHeaders() {
  56. HttpHeaders headers = new HttpHeaders();
  57. MediaType mediaType = new MediaType("text", "html",
  58. Charset.forName("utf-8"));
  59. headers.setContentType(mediaType);
  60. return headers;
  61. }
  62. /**
  63. * 返回 信息数据
  64. *
  65. * @param status
  66. * @param msg
  67. * @return
  68. */
  69. public ResponseEntity<String> renderMsg(Boolean status, String msg) {
  70. if (StringUtils.isEmpty(msg)) {
  71. msg = "";
  72. }
  73. String str = "{\"status\":\"" + status + "\",\"msg\":\"" + msg + "\"}";
  74. ResponseEntity<String> responseEntity = new ResponseEntity<String>(str,
  75. initHttpHeaders(), HttpStatus.OK);
  76. return responseEntity;
  77. }
  78. /**
  79. * 返回obj数据
  80. *
  81. * @param status
  82. * @param msg
  83. * @param obj
  84. * @return
  85. */
  86. public ResponseEntity<String> renderData(Boolean status, String msg,
  87. Object obj) {
  88. if (StringUtils.isEmpty(msg)) {
  89. msg = "";
  90. }
  91. StringBuffer sb = new StringBuffer();
  92. sb.append("{");
  93. sb.append("\"status\":\"" + status + "\",\"msg\":\"" + msg + "\",");
  94. sb.append("\"data\":" + JacksonJsonUtil.toJson(obj) + "");
  95. sb.append("}");
  96. ResponseEntity<String> responseEntity = new ResponseEntity<String>(
  97. sb.toString(), initHttpHeaders(), HttpStatus.OK);
  98. return responseEntity;
  99. }
  100. /***
  101. * 获取IP(如果是多级代理,则得到的是一串IP值)
  102. */
  103. public static String getIpAddr(HttpServletRequest request) {
  104. String ip = request.getHeader("x-forwarded-for");
  105. if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
  106. ip = request.getHeader("Proxy-Client-IP");
  107. }
  108. if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
  109. ip = request.getHeader("WL-Proxy-Client-IP");
  110. }
  111. if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {
  112. ip = request.getRemoteAddr();
  113. }
  114. if (ip != null && ip.length() > 0) {
  115. String[] ips = ip.split(",");
  116. for (int i = 0; i < ips.length; i++) {
  117. if (!"unknown".equalsIgnoreCase(ips[i])) {
  118. ip = ips[i];
  119. break;
  120. }
  121. }
  122. }
  123. return ip;
  124. }
  125. /**
  126. * 国际化获得语言内容
  127. *
  128. * @param key
  129. * 语言key
  130. * @param args
  131. * @param argsSplit
  132. * @param defaultMessage
  133. * @param locale
  134. * @return
  135. */
  136. public static String getLanguage(String key, String args, String argsSplit,
  137. String defaultMessage, String locale) {
  138. String language = "zh";
  139. String contry = "cn";
  140. String returnValue = defaultMessage;
  141. if (!StringUtil.isEmpty(locale)) {
  142. try {
  143. String[] localeArray = locale.split("_");
  144. language = localeArray[0];
  145. contry = localeArray[1];
  146. } catch (Exception e) {
  147. }
  148. }
  149. try {
  150. ResourceBundle resource = ResourceBundle.getBundle("lang.resource",
  151. new Locale(language, contry));
  152. returnValue = resource.getString(key);
  153. if (!StringUtil.isEmpty(args)) {
  154. String[] argsArray = args.split(argsSplit);
  155. for (int i = 0; i < argsArray.length; i++) {
  156. returnValue = returnValue.replace("{" + i + "}",
  157. argsArray[i]);
  158. }
  159. }
  160. } catch (Exception e) {
  161. }
  162. return returnValue;
  163. }
  164. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/运维做开发/article/detail/834962
推荐阅读
相关标签
  

闽ICP备14008679号