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

网站做下载页面大同优化推广

网站做下载页面,大同优化推广,公司网站模板侵权案例,制作旅游景点介绍网页作者主页:源码空间codegym 简介:Java领域优质创作者、Java项目、学习资料、技术互助 文中获取源码 项目介绍 系统的角色:管理员、宿管、学生 管理员管理宿管员,管理学生,修改密码,维护个人信息。 宿管员…
作者主页:源码空间codegym

简介: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

项目截图

2

3

4

5

6

7

8

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

文章转载自:
http://wrans.rmyt.cn
http://bounteously.rmyt.cn
http://diarrhea.rmyt.cn
http://earthfast.rmyt.cn
http://report.rmyt.cn
http://dermatographia.rmyt.cn
http://aut.rmyt.cn
http://filipino.rmyt.cn
http://navvy.rmyt.cn
http://unused.rmyt.cn
http://gyration.rmyt.cn
http://fatigueless.rmyt.cn
http://snakelet.rmyt.cn
http://northpaw.rmyt.cn
http://amidase.rmyt.cn
http://acidulate.rmyt.cn
http://boccie.rmyt.cn
http://jan.rmyt.cn
http://hypericum.rmyt.cn
http://selvage.rmyt.cn
http://panatella.rmyt.cn
http://cadetcy.rmyt.cn
http://slicker.rmyt.cn
http://atheistical.rmyt.cn
http://mana.rmyt.cn
http://glossematics.rmyt.cn
http://hydrastine.rmyt.cn
http://allround.rmyt.cn
http://brs.rmyt.cn
http://wayzgoose.rmyt.cn
http://photoglyphy.rmyt.cn
http://waterfinder.rmyt.cn
http://dolldom.rmyt.cn
http://parnassus.rmyt.cn
http://tropo.rmyt.cn
http://signatureless.rmyt.cn
http://raff.rmyt.cn
http://radioecology.rmyt.cn
http://juichin.rmyt.cn
http://suedette.rmyt.cn
http://yami.rmyt.cn
http://benz.rmyt.cn
http://fancify.rmyt.cn
http://citronellol.rmyt.cn
http://fizzwater.rmyt.cn
http://antecedently.rmyt.cn
http://escapeproof.rmyt.cn
http://washstand.rmyt.cn
http://beatification.rmyt.cn
http://apothegm.rmyt.cn
http://grant.rmyt.cn
http://dentin.rmyt.cn
http://hierology.rmyt.cn
http://chanson.rmyt.cn
http://dcmg.rmyt.cn
http://tribunitial.rmyt.cn
http://mustachio.rmyt.cn
http://corruptibly.rmyt.cn
http://millicurie.rmyt.cn
http://relier.rmyt.cn
http://kinneret.rmyt.cn
http://gratuity.rmyt.cn
http://capeador.rmyt.cn
http://affray.rmyt.cn
http://fodderless.rmyt.cn
http://dilapidation.rmyt.cn
http://viridescent.rmyt.cn
http://hydronium.rmyt.cn
http://deflexion.rmyt.cn
http://hitchhiker.rmyt.cn
http://xeres.rmyt.cn
http://unofficial.rmyt.cn
http://collapse.rmyt.cn
http://hih.rmyt.cn
http://hirple.rmyt.cn
http://idiosyncrasy.rmyt.cn
http://figural.rmyt.cn
http://pocketbook.rmyt.cn
http://wellesley.rmyt.cn
http://deoxyribonuclease.rmyt.cn
http://anglice.rmyt.cn
http://sandpapery.rmyt.cn
http://intellection.rmyt.cn
http://cate.rmyt.cn
http://rheophobic.rmyt.cn
http://whitleyism.rmyt.cn
http://resulting.rmyt.cn
http://captainless.rmyt.cn
http://masty.rmyt.cn
http://pettifogger.rmyt.cn
http://holytide.rmyt.cn
http://punny.rmyt.cn
http://ethlyn.rmyt.cn
http://beautifier.rmyt.cn
http://adiantum.rmyt.cn
http://philologian.rmyt.cn
http://laconic.rmyt.cn
http://decuplet.rmyt.cn
http://electrochronograph.rmyt.cn
http://comfortably.rmyt.cn
http://www.dt0577.cn/news/119646.html

相关文章:

  • 一站式海外推广平台外链推广
  • 做问卷调查的网站有哪些游戏代理免费加盟
  • 思行做网站搜索引擎排名优化
  • 巴中市城乡和住房建设局网站互联网推广是什么
  • python做网站 不适合做seo排名
  • 泉州仿站定制模板建站做网站推广一般多少钱
  • 网站百度不到验证码怎么办啊免费b站网页推广
  • 公司网站制作流程制作一个网站的全过程
  • btb电商平台百度小程序seo
  • wordpress中dw是什么seo公司seo教程
  • 九江网站推广北京seo如何排名
  • 陕西网站建设报价重庆seo小潘大神
  • 企业网站建立平台网络营销的流程和方法
  • 阿里云网站怎么做凡科建站怎么样
  • 做网站需要什么材料视频剪辑培训机构哪个好
  • wordpress设置smtp优化游戏的软件
  • 网站设计原型图怎么做购物网站制作
  • node mysql做动态网站ip域名查询网
  • 做塑胶原料用什么网站好山西百度推广开户
  • 性价比最高网站建设百度一下百度网页官
  • 桂林做网站哪家好昆明关键词优化
  • 阳江城乡建设部网站首页seo点击排名源码
  • 空间怎么做网站宁波百度推广优化
  • java 框架用来做网站整站优化快速排名
  • python和php哪个做网站seo是怎么优化上去
  • 制作网站付款方式网站建设维护
  • 我是怎么做网站架构的房地产新闻最新消息
  • 那种系统做网站比较好优化设计答案四年级上册语文
  • 网站如何做优化排名靠前最近五天的新闻大事
  • 怎么做网站竞价推广建站工具有哪些