作者:计算机学长阿伟
开发技术:SpringBoot、SSM、Vue、MySQL、ElementUI等,“文末源码”。
开发运行环境
- 开发语言:Java
- 数据库:MySQL
- 技术:SpringBoot、Vue、Mybaits Plus、ELementUI
- 工具:IDEA/Ecilpse、Navicat、Maven
源码下载地址
Java项目-基于springboot框架的校园台球厅人员与设备管理系统项目实战(附源码+文档)资源-CSDN文库
文档目录
【如需全文请按文末获取联系】
一、项目简介
校园台球厅人员与设备管理系统是一个集人员管理、设备管理、信息发布与反馈于一体的综合性系统。该系统通过中央控制台,实现了对台球厅内所有活动的全面管理和监控。管理员可以通过后台管理系统,轻松地进行会员账号管理、会员充值管理、球桌信息管理以及会员和普通用户的预约管理。用户则可以通过前台界面,方便地登录、注册、查看公告信息、留言反馈以及访问个人中心等功能。整个系统设计合理,操作便捷,大大提升了校园台球厅的运营效率和服务质量。
二、系统设计
2.1软件功能模块设计
2.2数据库设计
球桌信息实体图如图4-1所示:
个人中心实体图如图4-2所示:
三、系统项目部分截图
3.1后台系统部分页面效果
3.2前台系统部分页面效果
四、部分核心代码
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.HuiyuanchongzhiEntity;
import com.entity.view.HuiyuanchongzhiView;
import com.service.HuiyuanchongzhiService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MD5Util;
import com.utils.MPUtil;
import com.utils.CommonUtil;
import java.io.IOException;
/**
* 会员充值
* 后端接口
*/
@RestController
@RequestMapping("/huiyuanchongzhi")
public class HuiyuanchongzhiController {
@Autowired
private HuiyuanchongzhiService huiyuanchongzhiService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,HuiyuanchongzhiEntity huiyuanchongzhi,
HttpServletRequest request){
String tableName = request.getSession().getAttribute("tableName").toString();
if(tableName.equals("yonghu")) {
huiyuanchongzhi.setYonghuzhanghao((String)request.getSession().getAttribute("username"));
}
EntityWrapper<HuiyuanchongzhiEntity> ew = new EntityWrapper<HuiyuanchongzhiEntity>();
PageUtils page = huiyuanchongzhiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, huiyuanchongzhi), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@IgnoreAuth
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,HuiyuanchongzhiEntity huiyuanchongzhi,
HttpServletRequest request){
EntityWrapper<HuiyuanchongzhiEntity> ew = new EntityWrapper<HuiyuanchongzhiEntity>();
PageUtils page = huiyuanchongzhiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, huiyuanchongzhi), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( HuiyuanchongzhiEntity huiyuanchongzhi){
EntityWrapper<HuiyuanchongzhiEntity> ew = new EntityWrapper<HuiyuanchongzhiEntity>();
ew.allEq(MPUtil.allEQMapPre( huiyuanchongzhi, "huiyuanchongzhi"));
return R.ok().put("data", huiyuanchongzhiService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(HuiyuanchongzhiEntity huiyuanchongzhi){
EntityWrapper< HuiyuanchongzhiEntity> ew = new EntityWrapper< HuiyuanchongzhiEntity>();
ew.allEq(MPUtil.allEQMapPre( huiyuanchongzhi, "huiyuanchongzhi"));
HuiyuanchongzhiView huiyuanchongzhiView = huiyuanchongzhiService.selectView(ew);
return R.ok("查询会员充值成功").put("data", huiyuanchongzhiView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
HuiyuanchongzhiEntity huiyuanchongzhi = huiyuanchongzhiService.selectById(id);
return R.ok().put("data", huiyuanchongzhi);
}
/**
* 前端详情
*/
@IgnoreAuth
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
HuiyuanchongzhiEntity huiyuanchongzhi = huiyuanchongzhiService.selectById(id);
return R.ok().put("data", huiyuanchongzhi);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody HuiyuanchongzhiEntity huiyuanchongzhi, HttpServletRequest request){
huiyuanchongzhi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(huiyuanchongzhi);
huiyuanchongzhiService.insert(huiyuanchongzhi);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody HuiyuanchongzhiEntity huiyuanchongzhi, HttpServletRequest request){
huiyuanchongzhi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(huiyuanchongzhi);
huiyuanchongzhiService.insert(huiyuanchongzhi);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
public R update(@RequestBody HuiyuanchongzhiEntity huiyuanchongzhi, HttpServletRequest request){
//ValidatorUtils.validateEntity(huiyuanchongzhi);
huiyuanchongzhiService.updateById(huiyuanchongzhi);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
huiyuanchongzhiService.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<HuiyuanchongzhiEntity> wrapper = new EntityWrapper<HuiyuanchongzhiEntity>();
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("yonghuzhanghao", (String)request.getSession().getAttribute("username"));
}
int count = huiyuanchongzhiService.selectCount(wrapper);
return R.ok().put("count", count);
}
}
获取源码或文档
如需对应的论文或文档,以及其他定制需求,也可以下方添加联系我。