大家好!我是程序员一帆,感谢您阅读本文,欢迎一键三连哦。
💞当前专栏:Java毕业设计
精彩专栏推荐👇🏻👇🏻👇🏻
开发环境
- 开发语言:Java
- 框架:ssm
- JDK版本:JDK1.8
- 服务器:tomcat7
- 数据库:mysql 5.7
- 数据库工具:Navicat12
- 开发软件:eclipse/myeclipse/idea
- Maven包:Maven3.3.9
- 浏览器:谷歌浏览器
源码下载地址:
https://download.csdn.net/download/2301_76953549/89298634
论文目录
【如需全文请按文末获取联系】
一、项目简介
白云会议管理系统运用的工具包括Eclipse,Tomcat以及Navicat等。该系统可以实现会议室管理,会议室预约管理,会议文件管理,设备信息管理,使用记录管理,留言板管理等功能。
二、系统设计
2.1软件功能模块设计
管理员具备的详细功能将参照最终的设计结果,即图4.1所示的管理员功能结构图。其中管理员增删改查会议文件,设备信息,使用记录信息,会议室信息,可以审核用户预约的会议室信息,回复用户留言等。
用户具备的详细功能将参照最终的设计结果,即图4.2所示的用户功能结构图。其中用户预约会议室,查看公告,下载会议文件,查看会议室预约的审核结果信息。
2.2数据库设计
(1)把会议室具备的属性通过属性图进行展示,绘制的属性图见图4.4。
(3)把会议文件具备的属性通过属性图进行展示,绘制的属性图见图4.6。
(2)把用户具备的属性通过属性图进行展示,绘制的属性图见图4.5。
(5)上述实体间关系见图4.8。
三、系统项目部分截图
3.1管理员功能实现
会议室管理
实现会议室管理功能,其界面运行的效果图见图5.1。在该界面,管理员需要对会议室编号,会议室规模,会议室位置等信息进行登记,可以对具体会议室的使用记录进行登记,以及可以更改会议室部分数据等。
会议室预约管理
实现会议室预约管理功能,其界面运行的效果图见图5.2。在该界面,用户预约会议室的信息,管理员在查看之后,需要审核,同时可以删除会议室预约信息,会议室预约信息包括预计人数,会议室位置,开始时间,结束时间,申请时间等信息。
会议文件管理
实现会议文件管理功能,其界面运行的效果图见图5.3。在该界面,会议文件的信息需要管理员登记并上传会议文件,同时会议文件数据有错误,管理员也能更改。
使用记录管理
实现使用记录管理功能,其界面运行的效果图见图5.5。在该界面,使用记录信息有容纳人数,使用时间,会议室位置,会议室规模等信息,管理员能够修改使用记录信息。根据会议室名称可以对使用记录信息进行查询。
3.2用户功能实现
会议室信息
实现会议室信息功能,其界面运行的效果图见图5.6。在该界面,用户查看可约时间,容纳人数,会议室规模,设备详情等信息,用户点击会议室预约按钮就可以预约会议室。
预约会议室
实现预约会议室功能,其界面运行的效果图见图5.7。在该界面,用户只需要登记预计人数,会议开始与结束时间,然后登记会议说明信息即可提交。
会议室预约管理
实现会议室预约管理功能,其界面运行的效果图见图5.9。在该界面,用户查看预约会议室的信息,查看审核回复信息以及审核状态信息,可以通过会议室位置来实现对会议室预约信息的查询。
四、部分核心代码
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 java.io.IOException;
import com.utils.ValidatorUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
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.ShebeixinxiEntity;
import com.entity.view.ShebeixinxiView;
import com.service.ShebeixinxiService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MD5Util;
import com.utils.MPUtil;
import com.utils.CommonUtil;
/**
* 设备信息
* 后端接口
* @author
* @email
* @date 2022-04-21 23:05:48
*/
@RestController
@RequestMapping("/shebeixinxi")
public class ShebeixinxiController {
@Autowired
private ShebeixinxiService shebeixinxiService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,ShebeixinxiEntity shebeixinxi,
HttpServletRequest request){
EntityWrapper<ShebeixinxiEntity> ew = new EntityWrapper<ShebeixinxiEntity>();
PageUtils page = shebeixinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, shebeixinxi), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@IgnoreAuth
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,ShebeixinxiEntity shebeixinxi,
HttpServletRequest request){
EntityWrapper<ShebeixinxiEntity> ew = new EntityWrapper<ShebeixinxiEntity>();
PageUtils page = shebeixinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, shebeixinxi), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( ShebeixinxiEntity shebeixinxi){
EntityWrapper<ShebeixinxiEntity> ew = new EntityWrapper<ShebeixinxiEntity>();
ew.allEq(MPUtil.allEQMapPre( shebeixinxi, "shebeixinxi"));
return R.ok().put("data", shebeixinxiService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(ShebeixinxiEntity shebeixinxi){
EntityWrapper< ShebeixinxiEntity> ew = new EntityWrapper< ShebeixinxiEntity>();
ew.allEq(MPUtil.allEQMapPre( shebeixinxi, "shebeixinxi"));
ShebeixinxiView shebeixinxiView = shebeixinxiService.selectView(ew);
return R.ok("查询设备信息成功").put("data", shebeixinxiView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
ShebeixinxiEntity shebeixinxi = shebeixinxiService.selectById(id);
return R.ok().put("data", shebeixinxi);
}
/**
* 前端详情
*/
@IgnoreAuth
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
ShebeixinxiEntity shebeixinxi = shebeixinxiService.selectById(id);
return R.ok().put("data", shebeixinxi);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody ShebeixinxiEntity shebeixinxi, HttpServletRequest request){
shebeixinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(shebeixinxi);
shebeixinxiService.insert(shebeixinxi);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody ShebeixinxiEntity shebeixinxi, HttpServletRequest request){
shebeixinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(shebeixinxi);
shebeixinxiService.insert(shebeixinxi);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
@Transactional
public R update(@RequestBody ShebeixinxiEntity shebeixinxi, HttpServletRequest request){
//ValidatorUtils.validateEntity(shebeixinxi);
shebeixinxiService.updateById(shebeixinxi);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
shebeixinxiService.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<ShebeixinxiEntity> wrapper = new EntityWrapper<ShebeixinxiEntity>();
if(map.get("remindstart")!=null) {
wrapper.ge(columnName, map.get("remindstart"));
}
if(map.get("remindend")!=null) {
wrapper.le(columnName, map.get("remindend"));
}
int count = shebeixinxiService.selectCount(wrapper);
return R.ok().put("count", count);
}
}
获取源码或论文
如需对应的论文或源码,以及其他定制需求,也可以下方微❤联系。