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

物流业网站建设方案实验总结电商基地推广

物流业网站建设方案实验总结,电商基地推广,做公司的网站有哪些东西吗,html主页面模板ssmvue基于java的少儿编程网上报名系统源码和论文PPT006 开发工具#xff1a;idea 数据库mysql5.7(mysql5.7最佳) 数据库链接工具#xff1a;navcat,小海豚等 开发技术#xff1a;java ssm tomcat8.5 摘 要 在国家重视教育影响下#xff0c;教育部门的密确配合下#…ssmvue基于java的少儿编程网上报名系统源码和论文PPT006 开发工具idea  数据库mysql5.7(mysql5.7最佳) 数据库链接工具navcat,小海豚等 开发技术java  ssm tomcat8.5 摘  要 在国家重视教育影响下教育部门的密确配合下对教育进行改革、多样性、质量等等的要求使教育系统的管理和运营比过去十年前更加理性化。依照这一现实为基础设计一个快捷而又方便的网上少儿编程网上报名系统是一项十分重要并且有价值的事情。对于传统的少儿编程网上报名系统控制模型来说少儿编程网上报名系统具有许多不可比拟的优势首先是快速更新少儿编程网上报名系统的信息其次是大量信息的管理最后是高度安全以及使用简单等特性这使得少儿编程网上报名系统的管理和运营非常方便。 少儿编程网上报名系统的开发过程中采用B / S架构主要使用java技术进行开发中间件服务器是Tomcat服务器使用Mysql数据库和Eclipse开发环境。该少儿编程网上报名系统包括用户和管理员。其主要功能包括管理员首页、个人中心、用户管理、课程类型管理、课程信息管理、课程购买管理、退课管理、课程评价管理、留言板管理、系统管理用户首页、个人中心、课程购买管理、退课管理、课程评价管理、我的收藏管理前台首页首页、课程信息、课程资讯、留言反馈、个人中心、后台管理等功能。 本论文对少儿编程网上报名系统的发展背景进行详细的介绍并且对系统开发技术进行介绍然后对系统进行需求分析对少儿编程网上报名系统业务流程、系统结构以及数据都进行详细说明。用户可根据关键字进行信息的查找自己想要的课程信息等。 Abstract Under the influence of the states emphasis on education and the close cooperation of the education departments, the requirements for education reform, diversity and quality have made the management and operation of the education system more rational than that of the past decade. According to this reality, it is very important and valuable to design a fast and convenient online childrens programming online registration system. For the traditional childrens programming online registration system control model, childrens programming online registration system has many incomparable advantages, the first is to quickly update the information of childrens programming online registration system, the second is the management of a large amount of information, and the last is a high degree of security, and easy to use, which makes the management and operation of childrens programming online registration system very convenient Defecation. In the development process of childrens programming online registration system, B / S architecture is adopted, mainly using Java technology. The middleware server is Tomcat server, using MySQL database and eclipse development environment. The system includes users and administrators. Its main functions include administrator: home page, personal center, user management, course type management, course information management, course purchase management, course withdrawal management, course evaluation management, message board management, system management, user: home page, personal center, course purchase management, course withdrawal management, course evaluation management, my collection management, front page; home page, course letter management Information, course information, message feedback, personal center, background management and other functions. In this paper, the development background of childrens programming online registration system is introduced in detail, and the system development technology is introduced, and then the requirements of the system are analyzed, and the business process, system structure and data of childrens programming online registration system are described in detail. Users can search the course information they want according to the keywords. Key words: children programming, online registration system, MySQL database, Java technology, SSM framework 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.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.KechengxinxiEntity; import com.entity.view.KechengxinxiView;import com.service.KechengxinxiService; import com.service.TokenService; import com.utils.PageUtils; import com.utils.R; import com.utils.MPUtil; import com.utils.CommonUtil;/*** 课程信息* 后端接口* author * email * date 2023-12-30 13:44:50*/ RestController RequestMapping(/kechengxinxi) public class KechengxinxiController {Autowiredprivate KechengxinxiService kechengxinxiService;/*** 后端列表*/RequestMapping(/page)public R page(RequestParam MapString, Object params,KechengxinxiEntity kechengxinxi, HttpServletRequest request){EntityWrapperKechengxinxiEntity ew new EntityWrapperKechengxinxiEntity();PageUtils page kechengxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, kechengxinxi), params), params));return R.ok().put(data, page);}/*** 前端列表*/IgnoreAuthRequestMapping(/list)public R list(RequestParam MapString, Object params,KechengxinxiEntity kechengxinxi, HttpServletRequest request){EntityWrapperKechengxinxiEntity ew new EntityWrapperKechengxinxiEntity();PageUtils page kechengxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, kechengxinxi), params), params));return R.ok().put(data, page);}/*** 列表*/RequestMapping(/lists)public R list( KechengxinxiEntity kechengxinxi){EntityWrapperKechengxinxiEntity ew new EntityWrapperKechengxinxiEntity();ew.allEq(MPUtil.allEQMapPre( kechengxinxi, kechengxinxi)); return R.ok().put(data, kechengxinxiService.selectListView(ew));}/*** 查询*/RequestMapping(/query)public R query(KechengxinxiEntity kechengxinxi){EntityWrapper KechengxinxiEntity ew new EntityWrapper KechengxinxiEntity();ew.allEq(MPUtil.allEQMapPre( kechengxinxi, kechengxinxi)); KechengxinxiView kechengxinxiView kechengxinxiService.selectView(ew);return R.ok(查询课程信息成功).put(data, kechengxinxiView);}/*** 后端详情*/RequestMapping(/info/{id})public R info(PathVariable(id) String id){KechengxinxiEntity kechengxinxi kechengxinxiService.selectById(id);kechengxinxi.setClicknum(kechengxinxi.getClicknum()1);kechengxinxi.setClicktime(new Date());kechengxinxiService.updateById(kechengxinxi);return R.ok().put(data, kechengxinxi);}/*** 前端详情*/IgnoreAuthRequestMapping(/detail/{id})public R detail(PathVariable(id) String id){KechengxinxiEntity kechengxinxi kechengxinxiService.selectById(id);kechengxinxi.setClicknum(kechengxinxi.getClicknum()1);kechengxinxi.setClicktime(new Date());kechengxinxiService.updateById(kechengxinxi);return R.ok().put(data, kechengxinxi);}/*** 后端保存*/RequestMapping(/save)public R save(RequestBody KechengxinxiEntity kechengxinxi, HttpServletRequest request){kechengxinxi.setId(new Date().getTime()new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(kechengxinxi);kechengxinxiService.insert(kechengxinxi);return R.ok();}/*** 前端保存*/RequestMapping(/add)public R add(RequestBody KechengxinxiEntity kechengxinxi, HttpServletRequest request){kechengxinxi.setId(new Date().getTime()new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(kechengxinxi);kechengxinxiService.insert(kechengxinxi);return R.ok();}/*** 修改*/RequestMapping(/update)public R update(RequestBody KechengxinxiEntity kechengxinxi, HttpServletRequest request){//ValidatorUtils.validateEntity(kechengxinxi);kechengxinxiService.updateById(kechengxinxi);//全部更新return R.ok();}/*** 删除*/RequestMapping(/delete)public R delete(RequestBody Long[] ids){kechengxinxiService.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 MapString, 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));}}WrapperKechengxinxiEntity wrapper new EntityWrapperKechengxinxiEntity();if(map.get(remindstart)!null) {wrapper.ge(columnName, map.get(remindstart));}if(map.get(remindend)!null) {wrapper.le(columnName, map.get(remindend));}int count kechengxinxiService.selectCount(wrapper);return R.ok().put(count, count);}/*** 前端智能排序*/IgnoreAuthRequestMapping(/autoSort)public R autoSort(RequestParam MapString, Object params,KechengxinxiEntity kechengxinxi, HttpServletRequest request,String pre){EntityWrapperKechengxinxiEntity ew new EntityWrapperKechengxinxiEntity();MapString, Object newMap new HashMapString, Object();MapString, Object param new HashMapString, Object();IteratorMap.EntryString, Object it param.entrySet().iterator();while (it.hasNext()) {Map.EntryString, Object entry it.next();String key entry.getKey();String newKey entry.getKey();if (pre.endsWith(.)) {newMap.put(pre newKey, entry.getValue());} else if (StringUtils.isEmpty(pre)) {newMap.put(newKey, entry.getValue());} else {newMap.put(pre . newKey, entry.getValue());}}params.put(sort, clicknum);params.put(order, desc);PageUtils page kechengxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, kechengxinxi), params), params));return R.ok().put(data, page);}}
http://www.zqtcl.cn/news/464648/

相关文章:

  • thymeleaf做网站 seo重庆平台网站建设找哪家
  • WordPress子站站群建筑工程网上申请质量安全监督
  • 怎么给网站添加图标山西手机版建站系统哪家好
  • frontpage网页制作视频教程昆明网站建设优化企业
  • 工信部 诚信网站备案公司网络营销方案
  • 网站开发采集工具如何做网站内链优化
  • 在线做英语题的网站揭阳建站服务
  • 网站非法篡改wordpress的知名网站
  • 保定网建站模板uv推广平台
  • 股权分配系统建设网站wordpress mip 模板
  • 网站及其建设的心得体会昆明云南微网站
  • 详情页在线设计网站推荐广州建设网站企业
  • 设计师网站建设哪家网络公司做网站
  • 宣城网站开发专业制注册资金写100万后悔
  • 专业的高密做网站的建公司网站要多久
  • 蚌埠做网站哪家好WordPress强制ssl
  • 1m宽带做网站平台建站
  • 学习做ppt 的网站班会活动设计方案模板
  • 廊坊住房和城乡建设厅网站门户网站开发招标
  • 免费下载网站设计方案wordpress zenmeyong
  • 网站建设与维护相关知识网站建设遵循的规范
  • 网站建设费科目东莞市塘厦镇
  • 网站建设策划书1万字深圳公司网站设计企业
  • 建设企业网站小微asp iis设置网站路径
  • 分类信息网站营销小程序appid是什么
  • 营销软文是什么意思网络seo培训
  • 效果好的手机网站建设成都网站制作报价
  • 江门网站建设推广平台注册公司费用要多少
  • 淄博哪家公司做网站最好新手做地方门户网站
  • 做一个交易平台网站的成本深圳南山做网站的公司