大家好!我是岛上程序猿,感谢您阅读本文,欢迎一键三连哦。
💞当前专栏:Java毕业设计
精彩专栏推荐👇🏻👇🏻👇🏻
开发运行环境
- 框架:ssm
- JDK版本:JDK1.8
- 服务器:tomcat7
- 数据库:mysql 5.7
- 数据库工具:Navicat12
- 开发软件:eclipse/myeclipse/idea
- Maven包:Maven3.3.9
- 浏览器:谷歌浏览器
源码下载地址:
https://download.csdn.net/download/m0_46388260/89287800
论文目录
【如需全文请按文末获取联系】
一、项目简介
商铺租赁管理系统在对开发工具的选择上也很慎重,为了便于开发实现,选择的开发工具为Eclipse,选择的数据库工具为Mysql。以此搭建开发环境实现商铺租赁管理系统的功能。其中管理员管理房东,管理公告,管理商铺出租,租赁合同等信息。房东审核商铺出租订单,添加租赁合同,管理商铺出租信息。用户租赁商铺,查看公告,查看商铺租赁订单,查看租赁合同信息。
二、系统设计
2.1软件功能模块设计
为了让系统的编码可以顺利进行,特意对本系统功能进行细分设计,管理员的功能在经过细分后,设计的功能结构见下图。管理员管理房东,管理公告,管理商铺出租,租赁合同等信息。
房东的功能在经过细分后,设计的功能结构见下图。房东审核商铺出租订单,添加租赁合同,管理商铺出租信息。
用户的功能在经过细分后,设计的功能结构见下图。用户租赁商铺,查看公告,查看商铺租赁订单,查看租赁合同信息。
2.2数据库设计
(1)设计的商铺出租实体,其具备的属性见下图。
(2)设计的用户实体,其具备的属性见下图。
(3)设计的房东实体,其具备的属性见下图。
(5)设计的上述实体间关系见下图。
三、系统项目部分截图
3.1管理员功能实现
房东管理
管理员管理房东,其运行效果见下图。在本页面,管理员可以为房东重置密码,可以修改房东的手机号,照片,姓名等信息,也可以删除房东信息。
用户管理
管理员可以管理用户,其运行效果见下图。管理员能够对用户的登录密码进行重置,可以修改用户的注册信息。
3.2房东功能实现
商铺出租管理
房东管理商铺出租信息。其运行效果见下图。房东对需要出租的商铺信息进行登记,可以通过商铺名称查询商铺信息,可以修改商铺的状态,位置,面积,户型等信息。
商铺出租订单管理
房东管理商铺出租订单,其运行效果见下图。用户租赁商铺,该商铺的房东需要在当前模块进行出租订单的审核。
租赁合同管理
房东管理租赁合同,其运行效果见下图。房东在当前页面添加租赁合同信息,可以下载租赁合同文件,可以修改租赁合同的描述信息。
3.3用户功能实现
商铺出租
用户查看商铺出租。其运行效果见下图。用户查看出租的商铺介绍信息,可以在页面底部对出租的商铺进行留言,可以点击立即预订按钮对出租的商铺进行租赁。
商铺出租订单
用户查看商铺出租订单。其运行效果见下图。用户在本页面查看租赁的商铺的审核情况,查看房东是否同意把商铺出租给该用户。
租赁合同管理
用户查看租赁合同。其运行效果见下图。用户在本页面查看租赁合同信息,下载租赁合同文件。
四、部分核心代码
package com.controller;
import java.text.SimpleDateFormat;
import com.alibaba.fastjson.JSONObject;
import java.util.*;
import org.springframework.beans.BeanUtils;
import javax.servlet.http.HttpServletRequest;
import org.springframework.web.context.ContextLoader;
import javax.servlet.ServletContext;
import com.service.TokenService;
import com.utils.StringUtil;
import java.lang.reflect.InvocationTargetException;
import com.service.DictionaryService;
import org.apache.commons.lang3.StringUtils;
import com.annotation.IgnoreAuth;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.entity.FangdongEntity;
import com.service.FangdongService;
import com.entity.view.FangdongView;
import com.service.YonghuService;
import com.utils.PageUtils;
import com.utils.R;
/**
* 房东
* 后端接口
* @author
* @email
*/
@RestController
@Controller
@RequestMapping("/fangdong")
public class FangdongController {
private static final Logger logger = LoggerFactory.getLogger(FangdongController.class);
@Autowired
private FangdongService fangdongService;
@Autowired
private TokenService tokenService;
@Autowired
private DictionaryService dictionaryService;
//级联表service
@Autowired
private YonghuService yonghuService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params, HttpServletRequest request){
logger.debug("page方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
String role = String.valueOf(request.getSession().getAttribute("role"));
if(StringUtil.isEmpty(role)){
return R.error(511,"权限为空");
}
else if("用户".equals(role)){
params.put("yonghuId",request.getSession().getAttribute("userId"));
}
else if("房东".equals(role)){
params.put("fangdongId",request.getSession().getAttribute("userId"));
}
params.put("orderBy","id");
PageUtils page = fangdongService.queryPage(params);
//字典表数据转换
List<FangdongView> list =(List<FangdongView>)page.getList();
for(FangdongView c:list){
//修改对应字典表字段
dictionaryService.dictionaryConvert(c);
}
return R.ok().put("data", page);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
logger.debug("info方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
FangdongEntity fangdong = fangdongService.selectById(id);
if(fangdong !=null){
//entity转view
FangdongView view = new FangdongView();
BeanUtils.copyProperties( fangdong , view );//把实体数据重构到view中
//修改对应字典表字段
dictionaryService.dictionaryConvert(view);
return R.ok().put("data", view);
}else {
return R.error(511,"查不到数据");
}
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody FangdongEntity fangdong, HttpServletRequest request){
logger.debug("save方法:,,Controller:{},,fangdong:{}",this.getClass().getName(),fangdong.toString());
String role = String.valueOf(request.getSession().getAttribute("role"));
if(StringUtil.isEmpty(role)){
return R.error(511,"权限为空");
}
Wrapper<FangdongEntity> queryWrapper = new EntityWrapper<FangdongEntity>()
.eq("username", fangdong.getUsername())
.or()
.eq("fangdong_phone", fangdong.getFangdongPhone())
.or()
.eq("fangdong_id_number", fangdong.getFangdongIdNumber())
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
FangdongEntity fangdongEntity = fangdongService.selectOne(queryWrapper);
if(fangdongEntity==null){
fangdong.setCreateTime(new Date());
fangdong.setPassword("123456");
fangdongService.insert(fangdong);
return R.ok();
}else {
return R.error(511,"账户或者身份证号或者手机号已经被使用");
}
}
/**
* 后端修改
*/
@RequestMapping("/update")
public R update(@RequestBody FangdongEntity fangdong, HttpServletRequest request){
logger.debug("update方法:,,Controller:{},,fangdong:{}",this.getClass().getName(),fangdong.toString());
String role = String.valueOf(request.getSession().getAttribute("role"));
if(StringUtil.isEmpty(role)){
return R.error(511,"权限为空");
}
//根据字段查询是否有相同数据
Wrapper<FangdongEntity> queryWrapper = new EntityWrapper<FangdongEntity>()
.notIn("id",fangdong.getId())
.andNew()
.eq("username", fangdong.getUsername())
.or()
.eq("fangdong_phone", fangdong.getFangdongPhone())
.or()
.eq("fangdong_id_number", fangdong.getFangdongIdNumber())
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
FangdongEntity fangdongEntity = fangdongService.selectOne(queryWrapper);
if("".equals(fangdong.getFangdongPhoto()) || "null".equals(fangdong.getFangdongPhoto())){
fangdong.setFangdongPhoto(null);
}
if(fangdongEntity==null){
// String role = String.valueOf(request.getSession().getAttribute("role"));
// if("".equals(role)){
// fangdong.set
// }
fangdongService.updateById(fangdong);//根据id更新
return R.ok();
}else {
return R.error(511,"账户或者身份证号或者手机号已经被使用");
}
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Integer[] ids){
logger.debug("delete:,,Controller:{},,ids:{}",this.getClass().getName(),ids.toString());
fangdongService.deleteBatchIds(Arrays.asList(ids));
return R.ok();
}
/**
* 登录
*/
@IgnoreAuth
@RequestMapping(value = "/login")
public R login(String username, String password, String captcha, HttpServletRequest request) {
FangdongEntity fangdong = fangdongService.selectOne(new EntityWrapper<FangdongEntity>().eq("username", username));
if(fangdong==null || !fangdong.getPassword().equals(password)) {
return R.error("账号或密码不正确");
}
// // 获取监听器中的字典表
// ServletContext servletContext = ContextLoader.getCurrentWebApplicationContext().getServletContext();
// Map<String, Map<Integer, String>> dictionaryMap= (Map<String, Map<Integer, String>>) servletContext.getAttribute("dictionaryMap");
// Map<Integer, String> role_types = dictionaryMap.get("role_types");
// role_types.get(yonghu.getRoleTypes());
String token = tokenService.generateToken(fangdong.getId(),username, "fangdong", "房东");
R r = R.ok();
r.put("token", token);
r.put("role","房东");
r.put("username",fangdong.getFangdongName());
r.put("tableName","fangdong");
r.put("userId",fangdong.getId());
return r;
}
/**
* 注册
*/
@IgnoreAuth
@PostMapping(value = "/register")
public R register(@RequestBody FangdongEntity fangdong){
// ValidatorUtils.validateEntity(user);
if(fangdongService.selectOne(new EntityWrapper<FangdongEntity>().eq("username", fangdong.getUsername()).orNew().eq("fangdong_phone",fangdong.getFangdongPhone()).orNew().eq("fangdong_id_number",fangdong.getFangdongIdNumber())) !=null) {
return R.error("账户已存在或手机号或身份证号已经被使用");
}
fangdong.setCreateTime(new Date());
fangdongService.insert(fangdong);
return R.ok();
}
/**
* 重置密码
*/
@GetMapping(value = "/resetPassword")
public R resetPassword(Integer id){
FangdongEntity fangdong = new FangdongEntity();
fangdong.setPassword("123456");
fangdong.setId(id);
fangdongService.updateById(fangdong);
return R.ok();
}
/**
* 获取用户的session用户信息
*/
@RequestMapping("/session")
public R getCurrFangdong(HttpServletRequest request){
Integer id = (Integer)request.getSession().getAttribute("userId");
FangdongEntity fangdong = fangdongService.selectById(id);
return R.ok().put("data", fangdong);
}
/**
* 退出
*/
@GetMapping(value = "logout")
public R logout(HttpServletRequest request) {
request.getSession().invalidate();
return R.ok("退出成功");
}
/**
* 前端列表
*/
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params, HttpServletRequest request){
logger.debug("list方法:,,Controller:{},,params:{}",this.getClass().getName(),JSONObject.toJSONString(params));
String role = String.valueOf(request.getSession().getAttribute("role"));
if(StringUtil.isEmpty(role)){
return R.error(511,"权限为空");
}
else if("用户".equals(role)){
params.put("yonghuId",request.getSession().getAttribute("userId"));
}
else if("房东".equals(role)){
params.put("fangdongId",request.getSession().getAttribute("userId"));
}
// 没有指定排序字段就默认id倒序
if(StringUtil.isEmpty(String.valueOf(params.get("orderBy")))){
params.put("orderBy","id");
}
PageUtils page = fangdongService.queryPage(params);
//字典表数据转换
List<FangdongView> list =(List<FangdongView>)page.getList();
for(FangdongView c:list){
//修改对应字典表字段
dictionaryService.dictionaryConvert(c);
}
return R.ok().put("data", page);
}
/**
* 前端详情
*/
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
logger.debug("detail方法:,,Controller:{},,id:{}",this.getClass().getName(),id);
FangdongEntity fangdong = fangdongService.selectById(id);
if(fangdong !=null){
//entity转view
FangdongView view = new FangdongView();
BeanUtils.copyProperties( fangdong , view );//把实体数据重构到view中
//修改对应字典表字段
dictionaryService.dictionaryConvert(view);
return R.ok().put("data", view);
}else {
return R.error(511,"查不到数据");
}
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody FangdongEntity fangdong, HttpServletRequest request){
logger.debug("add方法:,,Controller:{},,fangdong:{}",this.getClass().getName(),fangdong.toString());
Wrapper<FangdongEntity> queryWrapper = new EntityWrapper<FangdongEntity>()
.eq("username", fangdong.getUsername())
.or()
.eq("fangdong_phone", fangdong.getFangdongPhone())
.or()
.eq("fangdong_id_number", fangdong.getFangdongIdNumber());
;
logger.info("sql语句:"+queryWrapper.getSqlSegment());
FangdongEntity fangdongEntity = fangdongService.selectOne(queryWrapper);
if(fangdongEntity==null){
fangdong.setCreateTime(new Date());
fangdong.setPassword("123456");
// String role = String.valueOf(request.getSession().getAttribute("role"));
// if("".equals(role)){
// fangdong.set
// }
fangdongService.insert(fangdong);
return R.ok();
}else {
return R.error(511,"账户或者身份证号或者手机号已经被使用");
}
}
}
获取源码或论文
如需对应的论文或源码,以及其他定制需求,也可以下方微信联系我。