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

青岛网站建设方案贵州做网站找谁

青岛网站建设方案,贵州做网站找谁,深圳龙岗租房子多少钱一个月,天津中小企业网站制作作者主页#xff1a;源码空间codegym 简介#xff1a;Java领域优质创作者、Java项目、学习资料、技术互助 文中获取源码 项目介绍 本大学生入学审核系统管理员和学生。 管理员功能有个人中心#xff0c;学生管理#xff0c;学籍信息管理#xff0c;入学办理管理等。 学… 作者主页源码空间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 服务端技术Spring Boot Mybatis VUE 使用说明 1.使用Navicati或者其它工具在mysql中创建对应sq文件名称的数据库并导入项目的sql文件 2.使用IDEA/Eclipse/MyEclipse导入项目修改配置运行项目 3.将项目中config-propertiesi配置文件中的数据库配置改为自己的配置然后运行 运行指导 idea导入源码空间站顶目教程说明(Vindows版)-ssm篇 http://mtw.so/5MHvZq 源码地址http://codegym.top 运行截图 文档截图 项目文档 代码 package com.controller;import com.alibaba.fastjson.JSONObject; import com.baomidou.mybatisplus.mapper.EntityWrapper; import com.baomidou.mybatisplus.mapper.Wrapper; import com.entity.SusheEntity; import com.entity.SusheYonghuEntity; import com.entity.view.SusheView; import com.service.DictionaryService; import com.service.SusheService; import com.service.SusheYonghuService; import com.service.TokenService; import com.utils.PageUtils; import com.utils.R; import com.utils.StringUtil; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.BeanUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.*;import javax.servlet.http.HttpServletRequest; import java.util.*;/*** 宿舍信息* 后端接口* author* email* date */ RestController Controller RequestMapping(/sushe) public class SusheController {private static final Logger logger LoggerFactory.getLogger(SusheController.class);Autowiredprivate SusheService susheService;Autowiredprivate TokenService tokenService;Autowiredprivate DictionaryService dictionaryService;Autowiredprivate SusheYonghuService susheYonghuService;//级联表service/*** 后端列表*/RequestMapping(/page)public R page(RequestParam MapString, Object params, HttpServletRequest request){logger.debug(page方法:,,Controller:{},,params:{},this.getClass().getName(),JSONObject.toJSONString(params));params.put(orderBy,id);String role String.valueOf(request.getSession().getAttribute(role));PageUtils page susheService.queryPage(params);if(StringUtil.isNotEmpty(role) 用户.equals(role)){ // 如果是用户的话,就删除 不是当前学生宿舍 的宿舍EntityWrapperSusheYonghuEntity wrapper new EntityWrapper();wrapper.eq(yonghu_id,request.getSession().getAttribute(userId));SusheYonghuEntity susheYonghuEntity susheYonghuService.selectOne(wrapper);if(susheYonghuEntity! null){Integer susheId susheYonghuEntity.getSusheId();ListSusheView list1 (ListSusheView)page.getList();IteratorSusheView it list1.iterator();while(it.hasNext()){SusheView susheView it.next();if(susheView.getId() ! susheId){it.remove();}}}else{page.setList(new ArrayListSusheView());}}//字典表数据转换ListSusheView list (ListSusheView)page.getList();for(SusheView c:list){//修改对应字典表字段dictionaryService.dictionaryConvert(c);}return R.ok().put(data, page);}/*** 后端详情*/RequestMapping(/info/{id})public R info(PathVariable(id) Long id){logger.debug(info方法:,,Controller:{},,id:{},this.getClass().getName(),id);SusheEntity sushe susheService.selectById(id);if(sushe !null){//entity转viewSusheView view new SusheView();BeanUtils.copyProperties( sushe , view );//把实体数据重构到view中//修改对应字典表字段dictionaryService.dictionaryConvert(view);return R.ok().put(data, view);}else {return R.error(511,查不到该宿舍);}}/*** 后端保存*/RequestMapping(/save)public R save(RequestBody SusheEntity sushe, HttpServletRequest request){logger.debug(save方法:,,Controller:{},,sushe:{},this.getClass().getName(),sushe.toString());String building sushe.getBuilding();String unit sushe.getUnit();String room sushe.getRoom();WrapperSusheEntity queryWrapper new EntityWrapperSusheEntity().eq(building, building).eq(unit, unit).eq(room,room);logger.info(sql语句:queryWrapper.getSqlSegment());SusheEntity susheEntity susheService.selectOne(queryWrapper);if(susheEntitynull){sushe.setCreateTime(new Date());sushe.setSusheNumber(0);susheService.insert(sushe);return R.ok();}else {return R.error(511,表中已有楼栋:building,单元:unit,房间号:room的房间);}}/*** 修改*/RequestMapping(/update)public R update(RequestBody SusheEntity sushe, HttpServletRequest request){logger.debug(update方法:,,Controller:{},,sushe:{},this.getClass().getName(),sushe.toString());String building sushe.getBuilding();String unit sushe.getUnit();String room sushe.getRoom();WrapperSusheEntity queryWrapper new EntityWrapperSusheEntity().notIn(id,sushe.getId()).eq(building, building).eq(unit, unit).eq(room, room);logger.info(sql语句:queryWrapper.getSqlSegment());SusheEntity susheEntity susheService.selectOne(queryWrapper);if(susheEntitynull){susheService.updateById(sushe);//根据id更新return R.ok();}else {return R.error(511,表中已有楼栋:building,单元:unit,房间号:room的房间);}}/*** 删除*/RequestMapping(/delete)public R delete(RequestBody Integer[] ids){logger.debug(delete:,,Controller:{},,ids:{},this.getClass().getName(),ids.toString());if(ids ! null ids.length0){susheService.deleteBatchIds(Arrays.asList(ids));susheYonghuService.delete(new EntityWrapperSusheYonghuEntity().in(sushe_id, Arrays.asList(ids)));}return R.ok();}}
http://www.zqtcl.cn/news/801972/

相关文章:

  • 嘉兴云推广网站贵州毕节网站建设
  • 班级网站模板青岛哪里有做网站公司的
  • 建设工程设计招标信息网站.制作一个聊天软件需要多少钱
  • 校园网站建设的意见新闻聚合网站开发 技术
  • 网站推广公司兴田德润电话多少wordpress 弹框
  • 大连网站建设谁家好软件开发需要什么技术
  • 广州网站建设哪家便宜成都电商app开发
  • 网站qq访客统计青岛网站设计定制
  • 山东嘉祥做网站的有哪几家销售外包
  • 怎么做网站_旅游网站定位
  • 湛江seo推广公司aso优化渠道
  • 网站设计培训机构内蒙古网上办事大厅官网
  • 什么是网站空间信息网站备案号中信息有变
  • 网站建设的基础怎么提升网站流量
  • 网站开发线框网页设计网站建设过程报告
  • 怎么用html做移动网站吗免费装修设计软件
  • 门头沟石家庄网站建设鞍山怎么样做一个自己的网站
  • 网站安装代码宣传网站建设背景
  • 网站空间续费东莞网站建设(信科分公司)
  • 少儿教育网站建设价格网页制作讲解视频
  • 网站开发方向的工作网站怎么做排名
  • 建设网站烧钱iis配置网站是什么
  • 新网站建设特色网站建设信息表
  • 商城做网站家具网站模板
  • 国有企业网站建设网站悬浮qq
  • 上海建站宝盒微网站生成app
  • 做网站是什么时候分页有哪些制作网站的公司
  • 专业柳州网站建设哪家好5千ip的网站能赚多少钱
  • 网站开发代理最火网页游戏
  • 做网站运营工资多少网站建设协议需要注意的问题