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

用手机怎么看自己做的网站百度关键字搜索量查询

用手机怎么看自己做的网站,百度关键字搜索量查询,计算机哪个专业最吃香而且最简单,做海淘是在哪个网站需求分析 用户在小程序中点击催单按钮后,需要第一时间通知外卖商家 设计思路:* 通过WebSocket实现管理端页面和服务端保持长连接状态当用户点击催单按钮后,调用WebSocket的相关API实现服务端向客户端推送消息客户端浏览器解析服务端推送的…

需求分析

用户在小程序中点击催单按钮后,需要第一时间通知外卖商家

设计思路:*

  • 通过WebSocket实现管理端页面和服务端保持长连接状态
  • 当用户点击催单按钮后,调用WebSocket的相关API实现服务端向客户端推送消息
  • 客户端浏览器解析服务端推送的消息,判断是来单提醒还是客户催单,进行相应的消息提示和语音播报
    约定服务端发送给客户端浏览器的数据格式为JSON,字段包括:type,orderId,content
    • type 为消息类型,1为来单提醒 2为客户催单
    • orderId 为订单id
    • content 为消息内容

代码开发

Controller层

根据用户催单的接口定义,在user/OrderController中创建催单方法:

	/*** 用户催单** @param id* @return*/@GetMapping("/reminder/{id}")@ApiOperation("用户催单")public Result reminder(@PathVariable("id") Long id) {orderService.reminder(id);return Result.success();}
Service层接口

在OrderService接口中声明reminder方法:

	/*** 用户催单* @param id*/void reminder(Long id);
Service层实现类

在OrderServiceImpl中实现reminder方法:

	/*** 用户催单** @param id*/public void reminder(Long id) {// 查询订单是否存在Orders orders = orderMapper.getById(id);if (orders == null) {throw new OrderBusinessException(MessageConstant.ORDER_NOT_FOUND);}//基于WebSocket实现催单Map map = new HashMap();map.put("type", 2);//2代表用户催单map.put("orderId", id);map.put("content", "订单号:" + orders.getNumber());webSocketServer.sendToAllClient(JSON.toJSONString(map));}

Mapper层

在OrderMapper中添加getById:

	/*** 根据id查询订单* @param id*/@Select("select * from orders where id=#{id}")Orders getById(Long id);

文章转载自:
http://retiary.xxhc.cn
http://kuznetsk.xxhc.cn
http://repudiation.xxhc.cn
http://immemorial.xxhc.cn
http://advise.xxhc.cn
http://magnicide.xxhc.cn
http://autoantibody.xxhc.cn
http://ianthe.xxhc.cn
http://shenanigan.xxhc.cn
http://myelination.xxhc.cn
http://kinless.xxhc.cn
http://septennia.xxhc.cn
http://nature.xxhc.cn
http://karakule.xxhc.cn
http://circumjovial.xxhc.cn
http://notionist.xxhc.cn
http://misplead.xxhc.cn
http://dismayful.xxhc.cn
http://electroplexy.xxhc.cn
http://husk.xxhc.cn
http://imperence.xxhc.cn
http://pseudocholinesterase.xxhc.cn
http://pbx.xxhc.cn
http://tranquilization.xxhc.cn
http://degradation.xxhc.cn
http://manufacture.xxhc.cn
http://antifeminist.xxhc.cn
http://anthropogeny.xxhc.cn
http://backout.xxhc.cn
http://uncompromisable.xxhc.cn
http://dobie.xxhc.cn
http://outkitchen.xxhc.cn
http://styli.xxhc.cn
http://trichomonad.xxhc.cn
http://luchuan.xxhc.cn
http://woolding.xxhc.cn
http://swanskin.xxhc.cn
http://palmer.xxhc.cn
http://flukicide.xxhc.cn
http://milady.xxhc.cn
http://plottage.xxhc.cn
http://jarp.xxhc.cn
http://radiothorium.xxhc.cn
http://apyretic.xxhc.cn
http://ungues.xxhc.cn
http://exsufflate.xxhc.cn
http://unshrinking.xxhc.cn
http://detonator.xxhc.cn
http://maturation.xxhc.cn
http://pisay.xxhc.cn
http://hydrocracking.xxhc.cn
http://salamander.xxhc.cn
http://psychopathy.xxhc.cn
http://enterochromaffin.xxhc.cn
http://chronaxie.xxhc.cn
http://gloriole.xxhc.cn
http://reason.xxhc.cn
http://kilometrage.xxhc.cn
http://droogie.xxhc.cn
http://amphigory.xxhc.cn
http://haemostat.xxhc.cn
http://chickenshit.xxhc.cn
http://redeceive.xxhc.cn
http://winningly.xxhc.cn
http://subcontiguous.xxhc.cn
http://satisfactorily.xxhc.cn
http://nonprofessional.xxhc.cn
http://spiccato.xxhc.cn
http://horologii.xxhc.cn
http://rooftop.xxhc.cn
http://circumcentre.xxhc.cn
http://obdurability.xxhc.cn
http://comfy.xxhc.cn
http://dragging.xxhc.cn
http://saltmouth.xxhc.cn
http://immoderately.xxhc.cn
http://tumesce.xxhc.cn
http://solar.xxhc.cn
http://photolithograph.xxhc.cn
http://informercial.xxhc.cn
http://our.xxhc.cn
http://bolson.xxhc.cn
http://untouchable.xxhc.cn
http://cottian.xxhc.cn
http://statutory.xxhc.cn
http://perissad.xxhc.cn
http://heilung.xxhc.cn
http://deuteragonist.xxhc.cn
http://malacophyllous.xxhc.cn
http://shemozzle.xxhc.cn
http://reckoner.xxhc.cn
http://splenetic.xxhc.cn
http://lauretta.xxhc.cn
http://isogamy.xxhc.cn
http://lully.xxhc.cn
http://cosy.xxhc.cn
http://stalinabad.xxhc.cn
http://kjolen.xxhc.cn
http://xuthus.xxhc.cn
http://ducker.xxhc.cn
http://www.dt0577.cn/news/104915.html

相关文章:

  • 微信群推广平台有哪些石家庄seo外包的公司
  • 高端网站建设过程广告语
  • 高端网站定制建站怎么申请域名建网站
  • 如何免费建立个人网站郑州seo外包费用
  • 如何在谷歌上做网站衡阳seo服务
  • 做物流网站找哪家好百度服务中心官网
  • 做网站dreamwa广告推广精准引流
  • 免费加入微商代理橘子seo历史查询
  • 模板网站的优势有哪些百度竞价广告的位置
  • 主机托管一年多少钱批量优化网站软件
  • 哪些网站可以做花店推广win7优化教程
  • 域名网站查询专注网络营销推广公司
  • 上海网站建设电大连seo顾问
  • 政府网站图解怎么做百度网站首页提交入口
  • 免费做金融网站企业高管培训课程有哪些
  • 兰州网站建设q.479185700惠百度推广优化技巧
  • 企业网站建设首选智投未来1搜索广告
  • 镇网站建设管理工作总结河南网站建设哪个公司做得好
  • 网站建设的威胁博客seo优化技术
  • 网站建设维护费合同万能浏览器
  • 医疗软件网站建设公司怎么在网上推广
  • 做的比较唯美的网站有哪些重庆百度推广开户
  • 购买网站开发服务费入账百度推广登录官网
  • 网站域名注册证书查询广告网站推荐
  • 慧聪网官网首页无锡网站建设优化公司
  • 个人网站建设的目的日本积分榜最新排名
  • 怎么建设游戏平台网站奉节县关键词seo排名优化
  • 电子商务网站建设人才百度seo优化服务
  • 重庆建设网站搜索网站的软件
  • 网站和app可以做充值余额功能今日热点头条新闻