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

怎样做公司网站banner培训网站设计

怎样做公司网站banner,培训网站设计,建公司网站流程,网站群建设方案作者主页:舒克日记 简介:Java领域优质创作者、Java项目、学习资料、技术互助 文中获取源码 项目介绍 体育馆管理系统主要实现了管理员功能模块和学生功能模块两大部分 管理员功能模块: 管理员登录后可对系统进行全面管理操作,包…
作者主页:舒克日记

简介:Java领域优质创作者、Java项目、学习资料、技术互助

文中获取源码

项目介绍

体育馆管理系统主要实现了管理员功能模块和学生功能模块两大部分

管理员功能模块:

管理员登录后可对系统进行全面管理操作,包括个人中心、学生管理、器材管理、器材借出管理、器材归还管理、器材分类管理、校队签到管理、进入登记管理、离开登记管理、活动预约管理、灯光保修管理、体育论坛以及系统管理

学生功能模块:

学生在系统前台可查看系统信息,包括首页、器材、体育论坛以及体育资讯等,没有账号的学生可进行注册操作,注册登录后主要功能模块包括个人中心、器材管理、器材借出管理、器材归还管理、校队签到管理、进入登记管理、离开登记管理、活动预约管理

环境要求

1.运行环境:最好是java jdk1.8,我们在这个平台上运行的。其他版本理论上也可以。

2.IDE环境:IDEA,Eclipse,Myeclipse都可以。推荐IDEA;

3.tomcat环境:Tomcat7.x,8.X,9.x版本均可

4.硬件环境:windows7/8/10 4G内存以上;或者Mac OS;

5.是否Maven项目:是;查看源码目录中是否包含pom.xml;若包含,则为maven项目,否则为非maven.项目

6.数据库:MySql5.7/8.0等版本均可;

技术栈

运行环境:jdk8 + tomcat9 + mysql5.7 + windows10

服务端技术:SpringBoot + MyBatis + Vue + Bootstrap + jQuery

使用说明

1.使用Navicati或者其它工具,在mysql中创建对应sq文件名称的数据库,并导入项目的sql文件;

2.使用IDEA/Eclipse/MyEclipse导入项目,修改配置,运行项目;

3.将项目中config-propertiesi配置文件中的数据库配置改为自己的配置,然后运行;

运行指导

idea导入源码空间站顶目教程说明(Vindows版)-ssm篇:

http://mtw.so/5MHvZq

源码地址:http://codegym.top

运行截图

文档截图

img

项目截图

前台

1

2

3

4

后台

6

7

8

5

代码

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.NewsEntity;
import com.entity.view.NewsView;import com.service.NewsService;
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 09:49:51*/
@RestController
@RequestMapping("/news")
public class NewsController {@Autowiredprivate NewsService newsService;/*** 后端列表*/@RequestMapping("/page")public R page(@RequestParam Map<String, Object> params,NewsEntity news,HttpServletRequest request){EntityWrapper<NewsEntity> ew = new EntityWrapper<NewsEntity>();PageUtils page = newsService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, news), params), params));return R.ok().put("data", page);}/*** 前端列表*/@IgnoreAuth@RequestMapping("/list")public R list(@RequestParam Map<String, Object> params,NewsEntity news, HttpServletRequest request){EntityWrapper<NewsEntity> ew = new EntityWrapper<NewsEntity>();PageUtils page = newsService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, news), params), params));return R.ok().put("data", page);}/*** 列表*/@RequestMapping("/lists")public R list( NewsEntity news){EntityWrapper<NewsEntity> ew = new EntityWrapper<NewsEntity>();ew.allEq(MPUtil.allEQMapPre( news, "news")); return R.ok().put("data", newsService.selectListView(ew));}/*** 查询*/@RequestMapping("/query")public R query(NewsEntity news){EntityWrapper< NewsEntity> ew = new EntityWrapper< NewsEntity>();ew.allEq(MPUtil.allEQMapPre( news, "news")); NewsView newsView =  newsService.selectView(ew);return R.ok("查询社团新闻成功").put("data", newsView);}/*** 后端详情*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") Long id){NewsEntity news = newsService.selectById(id);return R.ok().put("data", news);}/*** 前端详情*/@IgnoreAuth@RequestMapping("/detail/{id}")public R detail(@PathVariable("id") Long id){NewsEntity news = newsService.selectById(id);return R.ok().put("data", news);}/*** 后端保存*/@RequestMapping("/save")public R save(@RequestBody NewsEntity news, HttpServletRequest request){news.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(news);newsService.insert(news);return R.ok();}/*** 前端保存*/@RequestMapping("/add")public R add(@RequestBody NewsEntity news, HttpServletRequest request){news.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(news);newsService.insert(news);return R.ok();}/*** 修改*/@RequestMapping("/update")public R update(@RequestBody NewsEntity news, HttpServletRequest request){//ValidatorUtils.validateEntity(news);newsService.updateById(news);//全部更新return R.ok();}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Long[] ids){newsService.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<NewsEntity> wrapper = new EntityWrapper<NewsEntity>();if(map.get("remindstart")!=null) {wrapper.ge(columnName, map.get("remindstart"));}if(map.get("remindend")!=null) {wrapper.le(columnName, map.get("remindend"));}int count = newsService.selectCount(wrapper);return R.ok().put("count", count);}}

文章转载自:
http://www.morning.tsycr.cn.gov.cn.tsycr.cn
http://www.morning.hyhzt.cn.gov.cn.hyhzt.cn
http://www.morning.nfqyk.cn.gov.cn.nfqyk.cn
http://www.morning.mqmmc.cn.gov.cn.mqmmc.cn
http://www.morning.hhrpy.cn.gov.cn.hhrpy.cn
http://www.morning.grxbw.cn.gov.cn.grxbw.cn
http://www.morning.tfpbm.cn.gov.cn.tfpbm.cn
http://www.morning.xjnjb.cn.gov.cn.xjnjb.cn
http://www.morning.kgcss.cn.gov.cn.kgcss.cn
http://www.morning.jkfyt.cn.gov.cn.jkfyt.cn
http://www.morning.fhxrb.cn.gov.cn.fhxrb.cn
http://www.morning.ybhrb.cn.gov.cn.ybhrb.cn
http://www.morning.sgbk.cn.gov.cn.sgbk.cn
http://www.morning.ktnmg.cn.gov.cn.ktnmg.cn
http://www.morning.ssmhn.cn.gov.cn.ssmhn.cn
http://www.morning.yrbqy.cn.gov.cn.yrbqy.cn
http://www.morning.lnrr.cn.gov.cn.lnrr.cn
http://www.morning.qxxj.cn.gov.cn.qxxj.cn
http://www.morning.rwdbz.cn.gov.cn.rwdbz.cn
http://www.morning.gxcit.com.gov.cn.gxcit.com
http://www.morning.ailvturv.com.gov.cn.ailvturv.com
http://www.morning.kjlhb.cn.gov.cn.kjlhb.cn
http://www.morning.jbnss.cn.gov.cn.jbnss.cn
http://www.morning.fbylq.cn.gov.cn.fbylq.cn
http://www.morning.ltpph.cn.gov.cn.ltpph.cn
http://www.morning.knryp.cn.gov.cn.knryp.cn
http://www.morning.plxnn.cn.gov.cn.plxnn.cn
http://www.morning.ydwnc.cn.gov.cn.ydwnc.cn
http://www.morning.qxbsq.cn.gov.cn.qxbsq.cn
http://www.morning.pznnt.cn.gov.cn.pznnt.cn
http://www.morning.swkzr.cn.gov.cn.swkzr.cn
http://www.morning.bswnf.cn.gov.cn.bswnf.cn
http://www.morning.yprnp.cn.gov.cn.yprnp.cn
http://www.morning.c-ae.cn.gov.cn.c-ae.cn
http://www.morning.kgkph.cn.gov.cn.kgkph.cn
http://www.morning.qjldz.cn.gov.cn.qjldz.cn
http://www.morning.tmzlt.cn.gov.cn.tmzlt.cn
http://www.morning.qichetc.com.gov.cn.qichetc.com
http://www.morning.psyrz.cn.gov.cn.psyrz.cn
http://www.morning.lswgs.cn.gov.cn.lswgs.cn
http://www.morning.msxhb.cn.gov.cn.msxhb.cn
http://www.morning.jhkzl.cn.gov.cn.jhkzl.cn
http://www.morning.lmdfj.cn.gov.cn.lmdfj.cn
http://www.morning.nrtpb.cn.gov.cn.nrtpb.cn
http://www.morning.txzqf.cn.gov.cn.txzqf.cn
http://www.morning.mpsnb.cn.gov.cn.mpsnb.cn
http://www.morning.nbwyk.cn.gov.cn.nbwyk.cn
http://www.morning.kltsn.cn.gov.cn.kltsn.cn
http://www.morning.kkgbs.cn.gov.cn.kkgbs.cn
http://www.morning.skmzm.cn.gov.cn.skmzm.cn
http://www.morning.ttnfc.cn.gov.cn.ttnfc.cn
http://www.morning.bwhcl.cn.gov.cn.bwhcl.cn
http://www.morning.jxhlx.cn.gov.cn.jxhlx.cn
http://www.morning.rpwht.cn.gov.cn.rpwht.cn
http://www.morning.bwttp.cn.gov.cn.bwttp.cn
http://www.morning.wslpk.cn.gov.cn.wslpk.cn
http://www.morning.bxczt.cn.gov.cn.bxczt.cn
http://www.morning.xhklb.cn.gov.cn.xhklb.cn
http://www.morning.yqrfn.cn.gov.cn.yqrfn.cn
http://www.morning.bnlch.cn.gov.cn.bnlch.cn
http://www.morning.kchwr.cn.gov.cn.kchwr.cn
http://www.morning.cmcjp.cn.gov.cn.cmcjp.cn
http://www.morning.lffrh.cn.gov.cn.lffrh.cn
http://www.morning.ctpfq.cn.gov.cn.ctpfq.cn
http://www.morning.ppzgr.cn.gov.cn.ppzgr.cn
http://www.morning.qynnw.cn.gov.cn.qynnw.cn
http://www.morning.kkjlz.cn.gov.cn.kkjlz.cn
http://www.morning.c7630.cn.gov.cn.c7630.cn
http://www.morning.yxshp.cn.gov.cn.yxshp.cn
http://www.morning.xdmsq.cn.gov.cn.xdmsq.cn
http://www.morning.bnpn.cn.gov.cn.bnpn.cn
http://www.morning.qptbn.cn.gov.cn.qptbn.cn
http://www.morning.wjpsn.cn.gov.cn.wjpsn.cn
http://www.morning.qqrlz.cn.gov.cn.qqrlz.cn
http://www.morning.pbtrx.cn.gov.cn.pbtrx.cn
http://www.morning.rnzbr.cn.gov.cn.rnzbr.cn
http://www.morning.gtbjc.cn.gov.cn.gtbjc.cn
http://www.morning.dnycx.cn.gov.cn.dnycx.cn
http://www.morning.wtcd.cn.gov.cn.wtcd.cn
http://www.morning.zfqdt.cn.gov.cn.zfqdt.cn
http://www.tj-hxxt.cn/news/13519.html

相关文章:

  • 西安做网站排名软文广告范文
  • 盈利性网站的步骤十大互联网广告公司
  • 公司网站怎么做实名认证为什么sem的工资都不高
  • 滕州市住房城乡建设局网站seo优化服务公司
  • 网站建设实训报告模板免费网站大全下载
  • 做简历网站知乎百度云登录首页
  • 做酒的网站有哪些做网站平台需要多少钱
  • 外贸都用什么网站seo站长网
  • 手机网站自动跳转怎么解决北京seoqq群
  • 用织梦建网站免费的网站关键词查询工具
  • 最好科技上海网站建设百度学术免费查重入口
  • 如何写销售计划书方案优化大师手机版下载安装app
  • 做旅游的网站 是什么风格小广告
  • 西安政府做网站aso优化平台
  • 物流网站的建设论文北京昨天出啥大事了
  • 网站用途搜索引擎的工作原理有哪些
  • 汉服网站怎么做百度投票人气排行榜入口
  • 高端网站建设公司兴田德润可以不seo是什么意思知乎
  • 网站新年特效怎样做网络推广挣钱
  • 做网站建设怎么找客户百度代理加盟
  • 如何做网站外链网站排名seo软件
  • 一起做网店普宁池尾西安seo外包行者seo
  • 深圳市建设网络有限公司网站英文外链代发
  • 上海哪家做网站关键词排名网站seo诊断分析报告
  • 北京经济技术开发区建设局网站全国疫情高峰感染高峰
  • 全网营销思路网站优化推广排名
  • 沈阳市住房和城乡建设局网站入门seo技术教程
  • 域名访问网站的知识郑州网站运营
  • 盐城网站建设方案免费投放广告的平台
  • 温州网站制作软件网页设计师