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

企业网站推广策划方法WordPress多语言多站点

企业网站推广策划方法,WordPress多语言多站点,wordpress导航背景图片,wordpress媒体库配置收藏关注不迷路!! 🌟文末获取源码数据库🌟 感兴趣的可以先收藏起来,还有大家在毕设选题(免费咨询指导选题),项目以及论文编写等相关问题都可以给我留言咨询,希望帮助更多…

收藏关注不迷路!!

🌟文末获取源码+数据库🌟

感兴趣的可以先收藏起来,还有大家在毕设选题(免费咨询指导选题),项目以及论文编写等相关问题都可以给我留言咨询,希望帮助更多的人

文章目录
  • 摘要
  • 一、开发技术介绍
  • 二、功能介绍
  • 三、代码展示
  • 四、效果图
  • 五 、源码获取

摘要

系统管理也都将通过计算机进行整体智能化操作,对于社区维修平台所牵扯的管理及数据保存都是非常多的,例如住户管理、社区公告管理、维修工管理、维修订单管理、接单信息管理、订单信息管理、在线沟通管理、举报信息管理、留言板管理、系统管理等,这给管理者的工作带来了巨大的挑战,面对大量的信息,传统的管理系统,都是通过笔记的方式进行详细信息的统计,后来出现电脑,通过电脑输入软件将纸质的信息统计到电脑上,这种方式比较传统,而且想要统计数据信息比较麻烦,还受时间和空间的影响,所以为此开发了该系统;为用户提供了一个社区维修平台平台,方便管理员查看及维护,并且可以让住户在线进行报修和查看公告、订单信息、维修员信息等操作,维修员可以在线查看订单信息、进行在线接单,在线交流等,管理员可以足不出户就可以获取到系统的数据信息等,而且还能节省用户很多时间,所以开发社区维修平台平台给管理者带来了很大的方便,同时也方便管理员对用户信息进行处理。

一、开发技术介绍

  • JSP
  • Java
  • SpringBoot

二、功能介绍

系统结构图,如图4-3所示。

在这里插入图片描述

三、代码展示

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.WeixiudingdanEntity;
import com.entity.view.WeixiudingdanView;import com.service.WeixiudingdanService;
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 */
@RestController
@RequestMapping("/weixiudingdan")
public class WeixiudingdanController {@Autowiredprivate WeixiudingdanService weixiudingdanService;/*** 后端列表*/@RequestMapping("/page")public R page(@RequestParam Map<String, Object> params,WeixiudingdanEntity weixiudingdan, HttpServletRequest request){String tableName = request.getSession().getAttribute("tableName").toString();if(tableName.equals("zhuhu")) {weixiudingdan.setYonghuming((String)request.getSession().getAttribute("username"));}EntityWrapper<WeixiudingdanEntity> ew = new EntityWrapper<WeixiudingdanEntity>();PageUtils page = weixiudingdanService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, weixiudingdan), params), params));return R.ok().put("data", page);}/*** 前端列表*/@IgnoreAuth@RequestMapping("/list")public R list(@RequestParam Map<String, Object> params,WeixiudingdanEntity weixiudingdan, HttpServletRequest request){EntityWrapper<WeixiudingdanEntity> ew = new EntityWrapper<WeixiudingdanEntity>();PageUtils page = weixiudingdanService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, weixiudingdan), params), params));return R.ok().put("data", page);}/*** 列表*/@RequestMapping("/lists")public R list( WeixiudingdanEntity weixiudingdan){EntityWrapper<WeixiudingdanEntity> ew = new EntityWrapper<WeixiudingdanEntity>();ew.allEq(MPUtil.allEQMapPre( weixiudingdan, "weixiudingdan")); return R.ok().put("data", weixiudingdanService.selectListView(ew));}/*** 查询*/@RequestMapping("/query")public R query(WeixiudingdanEntity weixiudingdan){EntityWrapper< WeixiudingdanEntity> ew = new EntityWrapper< WeixiudingdanEntity>();ew.allEq(MPUtil.allEQMapPre( weixiudingdan, "weixiudingdan")); WeixiudingdanView weixiudingdanView =  weixiudingdanService.selectView(ew);return R.ok("查询维修订单成功").put("data", weixiudingdanView);}/*** 后端详情*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") Long id){WeixiudingdanEntity weixiudingdan = weixiudingdanService.selectById(id);return R.ok().put("data", weixiudingdan);}/*** 前端详情*/@RequestMapping("/detail/{id}")public R detail(@PathVariable("id") Long id){WeixiudingdanEntity weixiudingdan = weixiudingdanService.selectById(id);return R.ok().put("data", weixiudingdan);}/*** 后端保存*/@RequestMapping("/save")public R save(@RequestBody WeixiudingdanEntity weixiudingdan, HttpServletRequest request){weixiudingdan.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(weixiudingdan);weixiudingdanService.insert(weixiudingdan);return R.ok();}/*** 前端保存*/@RequestMapping("/add")public R add(@RequestBody WeixiudingdanEntity weixiudingdan, HttpServletRequest request){weixiudingdan.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(weixiudingdan);weixiudingdanService.insert(weixiudingdan);return R.ok();}/*** 修改*/@RequestMapping("/update")public R update(@RequestBody WeixiudingdanEntity weixiudingdan, HttpServletRequest request){//ValidatorUtils.validateEntity(weixiudingdan);weixiudingdanService.updateById(weixiudingdan);//全部更新return R.ok();}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Long[] ids){weixiudingdanService.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<WeixiudingdanEntity> wrapper = new EntityWrapper<WeixiudingdanEntity>();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("zhuhu")) {wrapper.eq("yonghuming", (String)request.getSession().getAttribute("username"));}int count = weixiudingdanService.selectCount(wrapper);return R.ok().put("count", count);}}

四、效果图

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

五 、源码获取

下方名片联系我即可!!


大家点赞、收藏、关注、评论啦 、查看👇🏻获取联系方式👇🏻


文章转载自:

http://bKW6Kie6.jypqx.cn
http://qqcF83H8.jypqx.cn
http://shaYe21u.jypqx.cn
http://MiGHfF1h.jypqx.cn
http://KzFEqC8y.jypqx.cn
http://8sv7vorm.jypqx.cn
http://liRpVIYJ.jypqx.cn
http://5q9CvcQf.jypqx.cn
http://rPUvYxEz.jypqx.cn
http://p7KG473J.jypqx.cn
http://QXG5kc8H.jypqx.cn
http://BnIts5Au.jypqx.cn
http://IpM8wgKM.jypqx.cn
http://lU0Hcs9U.jypqx.cn
http://DBBakLbf.jypqx.cn
http://I7B5V7Pa.jypqx.cn
http://KDrMrn4Z.jypqx.cn
http://z8QBU6EF.jypqx.cn
http://sIfXgU4e.jypqx.cn
http://8cl7fLSN.jypqx.cn
http://w8xywflf.jypqx.cn
http://IWuIZmKg.jypqx.cn
http://wKNU5nkc.jypqx.cn
http://yY6gaqcJ.jypqx.cn
http://JG6s1cGf.jypqx.cn
http://8dGf2EaG.jypqx.cn
http://eokHnlCW.jypqx.cn
http://8tgnkGVF.jypqx.cn
http://6IzEzLmX.jypqx.cn
http://mIq5jrjY.jypqx.cn
http://www.dtcms.com/wzjs/620992.html

相关文章:

  • 网站制作与建设书籍重庆市建设领域农民工工资专户网站
  • 怎么找到域名做的那个网站建站基础:wordpress安装教程图解 - 天缘博客
  • 营销型网站教程网站构成的作用
  • 找网页模板的网站好淘宝客返利网站程序
  • 网站上传文件不存在烟台网站制作设计
  • 四川城乡和住房建设厅网站首页网页设计平台有哪些
  • 在阿里云做视频网站需要什么wordpress 弹幕播放器
  • 阿里云域名续费网站省财政厅经济建设处网站
  • 网站地图怎么制作wordpress编辑器汉
  • 国外js特效网站北京彩页设计制作
  • 给别人做网站多少钱做交通工程刬线的网站公司
  • 游戏开发和网站开发哪个好玩龙泉驿网站seo
  • 钓鱼网站 企业形象网站建设方案推广
  • 网站采集功能wordpress拖拽主题
  • 接网站开发的公司北京市工商注册登记网
  • 营销网站建站企业网站搜索引擎优化的方法
  • 做网站给客户聊天记录哈尔滨建设工程有限公司
  • 生产建设兵团第三师政务网站eyoucms插件
  • 电子商务网站定制有没有做盗版电影网站犯罪的
  • 论坛网站 备案it人才外包
  • 网站建设 上海网站建网站建设实训心得体会
  • 重庆网站制作设计获客磁县专业做网站
  • 晋江文创园网站建设h5微信网站建设
  • wordpress 所有文章列表做seo用什么网站系统
  • 设计素材网站排行优化网站排名哪家好
  • wordpress网站主题石家庄建站软件
  • 中国工程建设造价管理协会网站哪里有好包装设计公司
  • 南昌网站定制郑州做网站那家做的好
  • 网站后台账号密码网站建设经济效益
  • wordpress添加网站地图免费空白简历模板word