Java+MySQL 基于ssm的停车位短租租赁管理系统程序#毕业设计

文末获取源码

开发环境

项目编号:Java+MySQL ssm271停车位短租租赁管理系统程序#毕业设计
开发语言:Java
开发工具:IDEA /Eclipse
数据库:MYSQL5.7
应用服务:Tomcat7/Tomcat8
使用框架:ssm+vue

项目介绍

随着科学技术的飞速发展,各行各业都在努力与现代先进技术接轨,通过科技手段提高自身的优势;对于停车位短租系统当然也不能排除在外,随着网络技术的不断成熟,带动了停车位短租市场,它彻底改变了过去传统的管理方式,不仅使服务管理难度变高了,还提升了管理的灵活性。这种个性化的平台特别注重交互协调与管理的相互配合,激发了管理人员的创造性与主动性,对停车位短租管理而言非常有利。
停车位短租系统,主要的模块包括查看;管理员;首页、个人中心、用户管理、车位信息管理、车位租用管理、车位退租管理、租用评价管理、系统管理。用户权限;首页、个人中心、车位租用管理、车位退租管理、租用评价管理、我的收藏管理。前台首页:首页、车位信息、公告信息、个人中心、后台管理、客服等功能。系统中管理员主要是为了安全有效地存储和管理各类信息,还可以对系统进行管理与更新维护等操作,并且对后台有相应的操作权限。

系统截图

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

关键代码

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.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.CheweizuyongEntity;
import com.entity.view.CheweizuyongView;

import com.service.CheweizuyongService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MPUtil;
import com.utils.CommonUtil;


/**
 * 车位租用
 * 后端接口
 * @author 
 * @email 
 * @date 2020-12-26 19:29:54
 */
@RestController
@RequestMapping("/cheweizuyong")
public class CheweizuyongController {
    @Autowired
    private CheweizuyongService cheweizuyongService;
    


    /**
     * 后端列表
     */
    @RequestMapping("/page")
    public R page(@RequestParam Map<String, Object> params,CheweizuyongEntity cheweizuyong, HttpServletRequest request){

		String tableName = request.getSession().getAttribute("tableName").toString();
		if(tableName.equals("yonghu")) {
			cheweizuyong.setYonghuming((String)request.getSession().getAttribute("username"));
		}
        EntityWrapper<CheweizuyongEntity> ew = new EntityWrapper<CheweizuyongEntity>();
		PageUtils page = cheweizuyongService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, cheweizuyong), params), params));
        return R.ok().put("data", page);
    }
    
    /**
     * 前端列表
     */
    @RequestMapping("/list")
    public R list(@RequestParam Map<String, Object> params,CheweizuyongEntity cheweizuyong, HttpServletRequest request){
        EntityWrapper<CheweizuyongEntity> ew = new EntityWrapper<CheweizuyongEntity>();
		PageUtils page = cheweizuyongService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, cheweizuyong), params), params));
        return R.ok().put("data", page);
    }

	/**
     * 列表
     */
    @RequestMapping("/lists")
    public R list( CheweizuyongEntity cheweizuyong){
       	EntityWrapper<CheweizuyongEntity> ew = new EntityWrapper<CheweizuyongEntity>();
      	ew.allEq(MPUtil.allEQMapPre( cheweizuyong, "cheweizuyong")); 
        return R.ok().put("data", cheweizuyongService.selectListView(ew));
    }

	 /**
     * 查询
     */
    @RequestMapping("/query")
    public R query(CheweizuyongEntity cheweizuyong){
        EntityWrapper< CheweizuyongEntity> ew = new EntityWrapper< CheweizuyongEntity>();
 		ew.allEq(MPUtil.allEQMapPre( cheweizuyong, "cheweizuyong")); 
		CheweizuyongView cheweizuyongView =  cheweizuyongService.selectView(ew);
		return R.ok("查询车位租用成功").put("data", cheweizuyongView);
    }
	
    /**
     * 后端详情
     */
    @RequestMapping("/info/{id}")
    public R info(@PathVariable("id") String id){
        CheweizuyongEntity cheweizuyong = cheweizuyongService.selectById(id);
        return R.ok().put("data", cheweizuyong);
    }

    /**
     * 前端详情
     */
    @RequestMapping("/detail/{id}")
    public R detail(@PathVariable("id") String id){
        CheweizuyongEntity cheweizuyong = cheweizuyongService.selectById(id);
        return R.ok().put("data", cheweizuyong);
    }
    



    /**
     * 后端保存
     */
    @RequestMapping("/save")
    public R save(@RequestBody CheweizuyongEntity cheweizuyong, HttpServletRequest request){
    	cheweizuyong.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    	//ValidatorUtils.validateEntity(cheweizuyong);

        cheweizuyongService.insert(cheweizuyong);
        return R.ok();
    }
    
    /**
     * 前端保存
     */
    @RequestMapping("/add")
    public R add(@RequestBody CheweizuyongEntity cheweizuyong, HttpServletRequest request){
    	cheweizuyong.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
    	//ValidatorUtils.validateEntity(cheweizuyong);

        cheweizuyongService.insert(cheweizuyong);
        return R.ok();
    }

    /**
     * 修改
     */
    @RequestMapping("/update")
    public R update(@RequestBody CheweizuyongEntity cheweizuyong, HttpServletRequest request){
        //ValidatorUtils.validateEntity(cheweizuyong);
        cheweizuyongService.updateById(cheweizuyong);//全部更新
        return R.ok();
    }
    

    /**
     * 删除
     */
    @RequestMapping("/delete")
    public R delete(@RequestBody Long[] ids){
        cheweizuyongService.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<CheweizuyongEntity> wrapper = new EntityWrapper<CheweizuyongEntity>();
		if(map.get("remindstart")!=null) {
			wrapper.ge(columnName, map.get("remindstart"));
		}
		if(map.get("remindend")!=null) {
			wrapper.le(columnName, map.get("remindend"));
		}

		String tableName = request.getSession().getAttribute("tableName").toString();
		if(tableName.equals("yonghu")) {
			wrapper.eq("yonghuming", (String)request.getSession().getAttribute("username"));
		}

		int count = cheweizuyongService.selectCount(wrapper);
		return R.ok().put("count", count);
	}
	


}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

wqq6310855

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值