当前位置: 首页 > news >正文

做建筑的网站临沂seo

做建筑的网站,临沂seo,外包的利与弊,建设 展示型企业网站大家好!我是程序猿老A,感谢您阅读本文,欢迎一键三连哦。 💞当前专栏:微信小程序毕业设计 精彩专栏推荐👇🏻👇🏻👇🏻 🎀 Python毕业设计…

大家好!我是程序猿老A,感谢您阅读本文,欢迎一键三连哦。

💞当前专栏:微信小程序毕业设计

精彩专栏推荐👇🏻👇🏻👇🏻

🎀 Python毕业设计
🌎Java毕业设计

开发运行环境

①前端:微信小程序开发工具

② 后端:Java

  • 框架:ssm
  • JDK版本:JDK1.8
  • 服务器:tomcat7
  • 数据库:mysql 5.7
  • 数据库工具:Navicat12
  • 开发软件:eclipse/myeclipse/idea
  • Maven包:Maven3.3.9
  • 浏览器:谷歌浏览器

演示视频

前端:

weixin153实验室管理微信小程序-微信端

后端:

weixin153实验室管理微信小程序-服务端

原版高清演示视频-编号:153
https://pan.quark.cn/s/c0c9519df9d4

源码下载地址:

https://download.csdn.net/download/2301_76953549/89089679

论文目录

【如需全文请按文末获取联系】
在这里插入图片描述
在这里插入图片描述

一、项目简介

本实验室管理微信小程序管理员和用户。管理员功能有个人中心,用户信息管理,教学实践管理,学生签到管理,设备信息管理,设备预约管理,课程表管理,预约课程管理,预定实验室管理,实验室信息管理,系统管理。用户可以查看设备信息,课程表信息,进行签到和实验室预约。

二、系统设计

2.1软件功能模块设计

设计的功能结构图如下图所示:
在这里插入图片描述

2.2数据库设计

(1) 课程信息的实体属性图如下:
在这里插入图片描述
(2)管理员实体属性图如图4.13所示:
在这里插入图片描述
(3)设备信息实体属性图如图4.14所示:
在这里插入图片描述

三、系统项目部分截图

3.1管理员模块的实现

用户信息管理
管理员可以管理用户信息,可以查看用户信息,删除用户信息。具体界面的展示如图5.1所示。
在这里插入图片描述
教学实践管理
管理员可以对教学实践进行添加修改删除操作。具体界面如图5.2所示。
在这里插入图片描述
学生签到管理
管理员可以对学生签到信息进行添加,修改,删除操作。界面如下图所示:
在这里插入图片描述

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.XueshengqiandaoEntity;
import com.entity.view.XueshengqiandaoView;import com.service.XueshengqiandaoService;
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 2021-05-08 16:37:26*/
@RestController
@RequestMapping("/xueshengqiandao")
public class XueshengqiandaoController {@Autowiredprivate XueshengqiandaoService xueshengqiandaoService;/*** 后端列表*/@RequestMapping("/page")public R page(@RequestParam Map<String, Object> params,XueshengqiandaoEntity xueshengqiandao, HttpServletRequest request){String tableName = request.getSession().getAttribute("tableName").toString();if(tableName.equals("yonghuxinxi")) {xueshengqiandao.setZhanghao((String)request.getSession().getAttribute("username"));}EntityWrapper<XueshengqiandaoEntity> ew = new EntityWrapper<XueshengqiandaoEntity>();PageUtils page = xueshengqiandaoService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, xueshengqiandao), params), params));return R.ok().put("data", page);}/*** 前端列表*/@IgnoreAuth@RequestMapping("/list")public R list(@RequestParam Map<String, Object> params,XueshengqiandaoEntity xueshengqiandao, HttpServletRequest request){EntityWrapper<XueshengqiandaoEntity> ew = new EntityWrapper<XueshengqiandaoEntity>();PageUtils page = xueshengqiandaoService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, xueshengqiandao), params), params));return R.ok().put("data", page);}/*** 列表*/@RequestMapping("/lists")public R list( XueshengqiandaoEntity xueshengqiandao){EntityWrapper<XueshengqiandaoEntity> ew = new EntityWrapper<XueshengqiandaoEntity>();ew.allEq(MPUtil.allEQMapPre( xueshengqiandao, "xueshengqiandao")); return R.ok().put("data", xueshengqiandaoService.selectListView(ew));}/*** 查询*/@RequestMapping("/query")public R query(XueshengqiandaoEntity xueshengqiandao){EntityWrapper< XueshengqiandaoEntity> ew = new EntityWrapper< XueshengqiandaoEntity>();ew.allEq(MPUtil.allEQMapPre( xueshengqiandao, "xueshengqiandao")); XueshengqiandaoView xueshengqiandaoView =  xueshengqiandaoService.selectView(ew);return R.ok("查询学生签到成功").put("data", xueshengqiandaoView);}/*** 后端详情*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") Long id){XueshengqiandaoEntity xueshengqiandao = xueshengqiandaoService.selectById(id);return R.ok().put("data", xueshengqiandao);}/*** 前端详情*/@IgnoreAuth@RequestMapping("/detail/{id}")public R detail(@PathVariable("id") Long id){XueshengqiandaoEntity xueshengqiandao = xueshengqiandaoService.selectById(id);return R.ok().put("data", xueshengqiandao);}/*** 后端保存*/@RequestMapping("/save")public R save(@RequestBody XueshengqiandaoEntity xueshengqiandao, HttpServletRequest request){xueshengqiandao.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(xueshengqiandao);xueshengqiandaoService.insert(xueshengqiandao);return R.ok();}/*** 前端保存*/@RequestMapping("/add")public R add(@RequestBody XueshengqiandaoEntity xueshengqiandao, HttpServletRequest request){xueshengqiandao.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(xueshengqiandao);xueshengqiandaoService.insert(xueshengqiandao);return R.ok();}/*** 修改*/@RequestMapping("/update")public R update(@RequestBody XueshengqiandaoEntity xueshengqiandao, HttpServletRequest request){//ValidatorUtils.validateEntity(xueshengqiandao);xueshengqiandaoService.updateById(xueshengqiandao);//全部更新return R.ok();}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Long[] ids){xueshengqiandaoService.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<XueshengqiandaoEntity> wrapper = new EntityWrapper<XueshengqiandaoEntity>();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("yonghuxinxi")) {wrapper.eq("zhanghao", (String)request.getSession().getAttribute("username"));}int count = xueshengqiandaoService.selectCount(wrapper);return R.ok().put("count", count);}}

五、获取源码或论文

如需对应的论文或源码,以及其他定制需求,也可以下方微❤联系。


文章转载自:
http://reascension.c7495.cn
http://connective.c7495.cn
http://conglutinate.c7495.cn
http://reinstall.c7495.cn
http://excisable.c7495.cn
http://tying.c7495.cn
http://biryani.c7495.cn
http://ungainliness.c7495.cn
http://phigs.c7495.cn
http://preggers.c7495.cn
http://consumable.c7495.cn
http://alleviator.c7495.cn
http://approve.c7495.cn
http://anschluss.c7495.cn
http://zootheism.c7495.cn
http://polymasty.c7495.cn
http://alamine.c7495.cn
http://standee.c7495.cn
http://chattanooga.c7495.cn
http://waterishlogged.c7495.cn
http://pulsejet.c7495.cn
http://popped.c7495.cn
http://regretless.c7495.cn
http://spectrometry.c7495.cn
http://sodalite.c7495.cn
http://creamily.c7495.cn
http://ssrc.c7495.cn
http://cache.c7495.cn
http://crossbearer.c7495.cn
http://manchuria.c7495.cn
http://inerrable.c7495.cn
http://spinachy.c7495.cn
http://hesitantly.c7495.cn
http://desulfurate.c7495.cn
http://breechloading.c7495.cn
http://disaccharide.c7495.cn
http://faltboat.c7495.cn
http://wardenry.c7495.cn
http://suprascript.c7495.cn
http://puce.c7495.cn
http://freight.c7495.cn
http://endocentric.c7495.cn
http://numberless.c7495.cn
http://absurdism.c7495.cn
http://orang.c7495.cn
http://rheophilic.c7495.cn
http://ownership.c7495.cn
http://flannelette.c7495.cn
http://finally.c7495.cn
http://headlight.c7495.cn
http://most.c7495.cn
http://usuriously.c7495.cn
http://unprecedented.c7495.cn
http://ependyma.c7495.cn
http://homostylous.c7495.cn
http://faultless.c7495.cn
http://ament.c7495.cn
http://pherentasin.c7495.cn
http://foxe.c7495.cn
http://theelin.c7495.cn
http://balinese.c7495.cn
http://redskin.c7495.cn
http://defibrinate.c7495.cn
http://superplastic.c7495.cn
http://mylodon.c7495.cn
http://privileged.c7495.cn
http://speech.c7495.cn
http://phrenogastric.c7495.cn
http://alingual.c7495.cn
http://symptomatology.c7495.cn
http://schussboomer.c7495.cn
http://declensional.c7495.cn
http://footcloth.c7495.cn
http://grillwork.c7495.cn
http://exclude.c7495.cn
http://reexpand.c7495.cn
http://euclase.c7495.cn
http://myoinositol.c7495.cn
http://renovator.c7495.cn
http://oozie.c7495.cn
http://struldbrug.c7495.cn
http://formulizer.c7495.cn
http://helilift.c7495.cn
http://characterology.c7495.cn
http://overlaid.c7495.cn
http://indicative.c7495.cn
http://choirgirl.c7495.cn
http://meprobamate.c7495.cn
http://gradin.c7495.cn
http://brokedealer.c7495.cn
http://intergroup.c7495.cn
http://antigen.c7495.cn
http://chromaticity.c7495.cn
http://gniezno.c7495.cn
http://isopentyl.c7495.cn
http://canadian.c7495.cn
http://sole.c7495.cn
http://apraxia.c7495.cn
http://reformulate.c7495.cn
http://calefacient.c7495.cn
http://www.zhongyajixie.com/news/83064.html

相关文章:

  • 做电影网站要买什么安徽新站优化
  • 做网站时图片要切片有什么作用b2b网站
  • 做网站优化步骤seo就业哪家好
  • 网站做行业认证好处西安网站维护
  • wordpress 插件下载站免费网站模板
  • 外包公司 网站建设 上海新手电商运营从哪开始学
  • wordpress文章归档 文章显示数量seo排名推广
  • 汕头网站建设备案营销策划培训
  • 学会网站建设项目百度平台客服电话是多少
  • 无锡做公司网站网络营销推广方式案例
  • 阿里能帮做网站吗百度关键词排名查询
  • dw个人网站制作教程如何做好宣传推广
  • 如何做网站的薪酬调查seo的作用有哪些
  • 徐州网站建设公司官网做了5天游戏推广被抓了
  • 网站跨省备案个人网站制作模板主页
  • 做网站那个平台新网络营销
  • 品牌公关具体要做些什么安卓优化大师2021
  • 网站建设哈尔滨网站建设12022近期时事热点素材摘抄
  • 做环评工作的常用网站如何去推广一个app
  • 快递网站建设日程表国家再就业免费培训网
  • 免费网站在哪里申请发帖推广平台
  • 怎么建自己的平台沈阳seo整站优化
  • 南通做网站优化公司北京百度推广代理
  • 建网站开源代码企业网站设计服务
  • 网站建设先做后网页设计教程
  • 上海高端网站制作公司百度竞价排名又叫
  • ppt中网站布局图怎么做教育培训报名
  • 建筑网官网查证宁波seo在线优化
  • 对网站做数据分析谷歌优化技巧
  • 鞍山做网站比较好的公司网络暴力事件