基于ssm框架实现民宿管理系统

项目介绍

本系统使用Spring+SpringMVC+MyBatis架构,数据库使用MySQL,前端页面使用jsp,专为名宿经营打造的管理系统,主要给民宿经营人员、门店前台人员等使用。通过本系统,民宿经营者可以方便的管理自己的房间、房型,灵活的制定的价格方案,直观查看民宿经营的核心数据,合理分配科学管理民宿内贩售的其他商品。总之,能够帮助民宿主提升民宿管理效率。
功能简介 【基于ssm框架实现民宿管理系统】主要分为两个端:店铺端 和总后台
一、店铺端主要功能:
1.房间管理 添加/修改房间以及房间信息 添加修改名宿内售卖的商品 2.旅客管理 添加/修改旅客以及团队信息 3.住宿管理 添加/修改预定房间的信息 添加/修改客户住宿信息 房间结算 4.财务管理 显示今日店铺的入住信息以及收入情况 5.个人设置 修改个人基本信息 意见反馈

二、后台主要功能
1.收益预览 查看每个类别收入多少钱 2.用户信息 查看各个店铺的帐号信息 3.意见反馈 查看各个店铺的反馈信息

开发环境:
  1. jdk 8
  2. intellij idea
  3. tomcat 8.5.40
  4. mysql 5.7
所用技术:
  1. Spring+SpringMVC+MyBatis
  2. layui
  3. jsp
项目访问地址 前端访问地址
http://localhost:8090/login

项目截图
  • 系统功能

    基于ssm框架实现民宿管理系统
    文章图片
    系统功能.png
  • 平台-用户信息

    基于ssm框架实现民宿管理系统
    文章图片
    平台-用户信息.png
  • 平台-收益预览

    基于ssm框架实现民宿管理系统
    文章图片
    收益预览.png
  • 旅客管理-旅客信息

    基于ssm框架实现民宿管理系统
    文章图片
    旅客管理-旅客信息.png
  • 房间设置-添加房间

    基于ssm框架实现民宿管理系统
    文章图片
    房间设置-添加房间.png
  • 商品设置-添加商品

    基于ssm框架实现民宿管理系统
    文章图片
    商品设置-添加商品.png
  • 住宿登记-结算

    基于ssm框架实现民宿管理系统
    文章图片
    住宿登记-结算.png
数据库配置
  1. 数据库配置信息
#配置文件 jdbc.driverClassName=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://localhost/homestay?useUnicode=true&characterEncoding=utf-8&useSSL=false jdbc.username=root jdbc.password=root123

  1. 数据库配置加载

  1. 资源配置

业务代码
  1. 民宿后台首页,展示收益情况
@RequestMapping("/welcome") public ModelAndView welcome(ModelAndView modelAndView){ User user=getUser(); HotelRegisterQuery query=new HotelRegisterQuery(); if(!user.getUsername().equals("admin")){ query.setUserId(getUserId()); } query.setType(0); //旅客收益 List type0list=hotelRegisterService.getEarningsByPtype(query); query.setType(1); //团队收益 List type1list=hotelRegisterService.getEarningsByPtype(query); String iStr=""; int list0Index=0; //旅客数据下标 int list1Index=0; //团队数据下标 String type0Data=""; //旅客每月收益 String type1Data=""; //团队每月收益 String month=""; for(int i=1; i<13; i++){ if(i<10){//小10的情况下拼接0,方便与查询数据对比 iStr="0"+i; }else{ iStr=i+""; } month+=iStr+","; if(type0list.size()>0){ if(iStr.equals(type0list.get(list0Index).getSettleTime())){ type0Data=https://www.it610.com/article/type0Data+type0list.get(list0Index).getAllFee()+","; //如果匹配上月份,就拼接当前月的收益 if(!(list0Index+1>=type0list.size())){//大于等于list大小,说明已经没有数据 list0Index++; } }else{ type0Data=https://www.it610.com/article/type0Data+"0,"; } }else{ type0Data=https://www.it610.com/article/type0Data+"0,"; } if(type1list.size()>0){ if(iStr.equals(type1list.get(list1Index).getSettleTime())){ type1Data=https://www.it610.com/article/type1Data+type1list.get(list1Index).getAllFee()+","; if(!(list1Index+1>=type1list.size())){//大于等于list大小,说明已经没有数据 list1Index++; } }else{ type1Data=https://www.it610.com/article/type1Data+"0,"; } }else{ type1Data=https://www.it610.com/article/type1Data+"0,"; } } type0Data=https://www.it610.com/article/type0Data.substring(0,type0Data.length()-1); type1Data=type1Data.substring(0,type1Data.length()-1); month=month.substring(0,month.length()-1); modelAndView.addObject("month",month); modelAndView.addObject("type0Data",type0Data); modelAndView.addObject("type1Data",type1Data); modelAndView.setViewName("welcome"); return modelAndView; } //jsp数据渲染

  1. 房间添加
@RequestMapping("/save") @ResponseBody public AjaxResult save(Room room){ try { if(room.getId()!=null){ roomService.update(room); }else{ RoomQuery query=new RoomQuery(); query.setRoomNum(room.getRoomNum()); query.setUserId(getUserId()); PageList pageList= roomService.getByQuery(query); if(pageList.getCount()>0){ return new AjaxResult("保存失败,房间号已经存在!",-10002); }else{ room.setUserId(getUserId()); roomService.add(room); } } return new AjaxResult("保存成功!"); } catch (Exception e) { e.printStackTrace(); return new AjaxResult("保存失败:"+e.getMessage(),-10002); } }

  1. 商品添加
@RequestMapping("/save") @ResponseBody public AjaxResult save(Goods goods){ try { if(goods.getId()!=null){ goodsService.update(goods); }else{ GoodsQuery goodsQuery=new GoodsQuery(); goodsQuery.setGoodName(goods.getGoodName()); goodsQuery.setUserId(getUserId()); PageList pageList=goodsService.getByQuery(goodsQuery); if(pageList.getCount()>0){ return new AjaxResult("保存失败,改商品名已经存在",-10002); }else{ goods.setUserId(getUserId()); goodsService.add(goods); } } return new AjaxResult("保存成功!"); } catch (Exception e) { e.printStackTrace(); return new AjaxResult("保存失败:"+e.getMessage(),-10002); } }

项目后续 其他ssh,springboot版本后续迭代更新,持续关注

    推荐阅读