目录
大家好呀,我是一个混迹在java圈的码农。今天要和大家分享的是 一款基于SpringBoot+Vue的实验室管理系统,项目源码请点击文章末尾联系我哦~目前有各类成品 毕设 JavaWeb SSM SpringBoot等等项目框架,源码丰富,欢迎咨询。
一、项目介绍
社会的发展和科学技术的进步,互联网技术越来越受欢迎。网络计算机的生活方式逐渐受到广大人民群众的喜爱,也逐渐进入了每个用户的使用。互联网具有便利性,速度快,效率高,成本低等优点。 因此,构建符合自己要求的操作系统是非常有意义的。
本文从用户的功能要求出发,建立了实验室管理系统,系统中的功能模块主要是实现管理员;首页、个人中心、实验室管理、用户管理、实验室申请管理、设备管理、设备报备管理、设备申请管理、消耗品管理、消耗品领取管理、论坛管理、系统管理,用户前台;首页、实验室、设备、消耗品、论坛信息、新闻资讯、我的、跳转到后台,用户后台;首页、个人中心、实验室申请管理、设备报备管理、设备申请管理、消耗品领取管理,等功能部分;经过认真细致的研究,精心准备和规划,最后测试成功,系统可以正常使用。分析功能调整与实验室管理系统实现的实际需求相结合,讨论了JSP开发实验室管理系统的使用。
关键字:实验室管理系统 JSP技术 Spring Boot框架
二、开发环境
开发系统:Windows
JDK版本:Java JDK1.8(推荐)
开发工具:IDEA/MyEclipse(推荐IDEA)
数据库版本: mysql8.0(推荐)
数据库可视化工具: navicat
服务器:SpringBoot自带 apache tomcat
框架:springboot,vue
三、功能介绍
用户通过点击后台管理,进入页面可以进行首页、个人中心、实验室申请管理、设备报备管理、设备申请管理、消耗品领取管理等功能模块,进行相对应操作。个人信息,管理员通过列表进行查看用户名等信息,进行查看、修改或删除操作。实验室管理,管理员通过实验室管理可以在线查看实验室编号、图片、容纳人数、位置等信息,进行详情或修改、删除操作。实验室申请管理,管理员通过实验室申请管理可以在线查看实验室编号、位置、用户名、用户姓名、身份、联系电话等信息,进行查看或修改、删除操作。设备报备管理,管理员通过设备报备管理可以在线查看索引、设备编号、设备名称、数量、位置、用户名、用户姓名、身份、报备时间、审核回复、审核等信息,进行查看或添加修改或删除。
四、核心代码
/**
* 消耗品
* 后端接口
* @author
* @email
*/
@RestController
@RequestMapping("/xiaohaopin")
public class XiaohaopinController {
@Autowired
private XiaohaopinService xiaohaopinService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,XiaohaopinEntity xiaohaopin, HttpServletRequest request){
EntityWrapper<XiaohaopinEntity> ew = new EntityWrapper<XiaohaopinEntity>();
PageUtils page = xiaohaopinService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, xiaohaopin), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@IgnoreAuth
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,XiaohaopinEntity xiaohaopin, HttpServletRequest request){
EntityWrapper<XiaohaopinEntity> ew = new EntityWrapper<XiaohaopinEntity>();
PageUtils page = xiaohaopinService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, xiaohaopin), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( XiaohaopinEntity xiaohaopin){
EntityWrapper<XiaohaopinEntity> ew = new EntityWrapper<XiaohaopinEntity>();
ew.allEq(MPUtil.allEQMapPre( xiaohaopin, "xiaohaopin"));
return R.ok().put("data", xiaohaopinService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(XiaohaopinEntity xiaohaopin){
EntityWrapper< XiaohaopinEntity> ew = new EntityWrapper< XiaohaopinEntity>();
ew.allEq(MPUtil.allEQMapPre( xiaohaopin, "xiaohaopin"));
XiaohaopinView xiaohaopinView = xiaohaopinService.selectView(ew);
return R.ok("查询消耗品成功").put("data", xiaohaopinView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") String id){
XiaohaopinEntity xiaohaopin = xiaohaopinService.selectById(id);
return R.ok().put("data", xiaohaopin);
}
/**
* 前端详情
*/
@IgnoreAuth
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") String id){
XiaohaopinEntity xiaohaopin = xiaohaopinService.selectById(id);
return R.ok().put("data", xiaohaopin);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody XiaohaopinEntity xiaohaopin, HttpServletRequest request){
xiaohaopin.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(xiaohaopin);
xiaohaopinService.insert(xiaohaopin);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody XiaohaopinEntity xiaohaopin, HttpServletRequest request){
xiaohaopin.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(xiaohaopin);
xiaohaopinService.insert(xiaohaopin);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
public R update(@RequestBody XiaohaopinEntity xiaohaopin, HttpServletRequest request){
//ValidatorUtils.validateEntity(xiaohaopin);
xiaohaopinService.updateById(xiaohaopin);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
xiaohaopinService.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<XiaohaopinEntity> wrapper = new EntityWrapper<XiaohaopinEntity>();
if(map.get("remindstart")!=null) {
wrapper.ge(columnName, map.get("remindstart"));
}
if(map.get("remindend")!=null) {
wrapper.le(columnName, map.get("remindend"));
}
int count = xiaohaopinService.selectCount(wrapper);
return R.ok().put("count", count);
}
}