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

企业网站策划怎么样宁波品牌网站建设服务电话

企业网站策划怎么样,宁波品牌网站建设服务电话,浙江省住房和城乡建设信息网,网站部署 模板ssmvue线上体验馆管理系统源码和论文085 开发工具#xff1a;idea 数据库mysql5.7 数据库链接工具#xff1a;navcat,小海豚等 技术#xff1a;ssm 摘 要 现代经济快节奏发展以及不断完善升级的信息化技术#xff0c;让传统数据信息的管理升级为软件存储#xff0…ssmvue线上体验馆管理系统源码和论文085 开发工具idea   数据库mysql5.7  数据库链接工具navcat,小海豚等   技术ssm 摘  要 现代经济快节奏发展以及不断完善升级的信息化技术让传统数据信息的管理升级为软件存储归纳集中处理数据信息的管理方式。本鲸落文化线上体验馆就是在这样的大环境下诞生其可以帮助管理者在短时间内处理完毕庞大的数据信息使用这种软件工具可以帮助管理人员提高事务处理效率达到事半功倍的效果。此鲸落文化线上体验馆利用当下成熟完善的SSM框架使用跨平台的可开发大型商业网站的Java语言以及最受欢迎的RDBMS应用软件之一的Mysql数据库进行程序开发.鲸落文化线上体验馆的开发根据操作人员需要设计的界面简洁美观在功能模块布局上跟同类型网站保持一致程序在实现基本要求功能时也为数据信息面临的安全问题提供了一些实用的解决方案。可以说该程序在帮助管理者高效率地处理工作事务的同时也实现了数据信息的整体化规范化与自动化。 关键词鲸落文化线上体验馆SSM框架Mysql自动化 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.LishibeijingEntity; import com.entity.view.LishibeijingView;import com.service.LishibeijingService; 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-02-22 15:48:18*/ RestController RequestMapping(/lishibeijing) public class LishibeijingController {Autowiredprivate LishibeijingService lishibeijingService;/*** 后端列表*/RequestMapping(/page)public R page(RequestParam MapString, Object params,LishibeijingEntity lishibeijing, HttpServletRequest request){EntityWrapperLishibeijingEntity ew new EntityWrapperLishibeijingEntity();PageUtils page lishibeijingService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, lishibeijing), params), params));return R.ok().put(data, page);}/*** 前端列表*/IgnoreAuthRequestMapping(/list)public R list(RequestParam MapString, Object params,LishibeijingEntity lishibeijing, HttpServletRequest request){EntityWrapperLishibeijingEntity ew new EntityWrapperLishibeijingEntity();PageUtils page lishibeijingService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, lishibeijing), params), params));return R.ok().put(data, page);}/*** 列表*/RequestMapping(/lists)public R list( LishibeijingEntity lishibeijing){EntityWrapperLishibeijingEntity ew new EntityWrapperLishibeijingEntity();ew.allEq(MPUtil.allEQMapPre( lishibeijing, lishibeijing)); return R.ok().put(data, lishibeijingService.selectListView(ew));}/*** 查询*/RequestMapping(/query)public R query(LishibeijingEntity lishibeijing){EntityWrapper LishibeijingEntity ew new EntityWrapper LishibeijingEntity();ew.allEq(MPUtil.allEQMapPre( lishibeijing, lishibeijing)); LishibeijingView lishibeijingView lishibeijingService.selectView(ew);return R.ok(查询历史背景成功).put(data, lishibeijingView);}/*** 后端详情*/RequestMapping(/info/{id})public R info(PathVariable(id) Long id){LishibeijingEntity lishibeijing lishibeijingService.selectById(id);return R.ok().put(data, lishibeijing);}/*** 前端详情*/IgnoreAuthRequestMapping(/detail/{id})public R detail(PathVariable(id) Long id){LishibeijingEntity lishibeijing lishibeijingService.selectById(id);return R.ok().put(data, lishibeijing);}/*** 后端保存*/RequestMapping(/save)public R save(RequestBody LishibeijingEntity lishibeijing, HttpServletRequest request){lishibeijing.setId(new Date().getTime()new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(lishibeijing);lishibeijingService.insert(lishibeijing);return R.ok();}/*** 前端保存*/RequestMapping(/add)public R add(RequestBody LishibeijingEntity lishibeijing, HttpServletRequest request){lishibeijing.setId(new Date().getTime()new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(lishibeijing);lishibeijingService.insert(lishibeijing);return R.ok();}/*** 修改*/RequestMapping(/update)public R update(RequestBody LishibeijingEntity lishibeijing, HttpServletRequest request){//ValidatorUtils.validateEntity(lishibeijing);lishibeijingService.updateById(lishibeijing);//全部更新return R.ok();}/*** 删除*/RequestMapping(/delete)public R delete(RequestBody Long[] ids){lishibeijingService.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));}}WrapperLishibeijingEntity wrapper new EntityWrapperLishibeijingEntity();if(map.get(remindstart)!null) {wrapper.ge(columnName, map.get(remindstart));}if(map.get(remindend)!null) {wrapper.le(columnName, map.get(remindend));}int count lishibeijingService.selectCount(wrapper);return R.ok().put(count, count);}}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.ZhizuoshipinEntity; import com.entity.view.ZhizuoshipinView;import com.service.ZhizuoshipinService; 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-02-22 15:48:18*/ RestController RequestMapping(/zhizuoshipin) public class ZhizuoshipinController {Autowiredprivate ZhizuoshipinService zhizuoshipinService;/*** 后端列表*/RequestMapping(/page)public R page(RequestParam MapString, Object params,ZhizuoshipinEntity zhizuoshipin, HttpServletRequest request){EntityWrapperZhizuoshipinEntity ew new EntityWrapperZhizuoshipinEntity();PageUtils page zhizuoshipinService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, zhizuoshipin), params), params));return R.ok().put(data, page);}/*** 前端列表*/IgnoreAuthRequestMapping(/list)public R list(RequestParam MapString, Object params,ZhizuoshipinEntity zhizuoshipin, HttpServletRequest request){EntityWrapperZhizuoshipinEntity ew new EntityWrapperZhizuoshipinEntity();PageUtils page zhizuoshipinService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, zhizuoshipin), params), params));return R.ok().put(data, page);}/*** 列表*/RequestMapping(/lists)public R list( ZhizuoshipinEntity zhizuoshipin){EntityWrapperZhizuoshipinEntity ew new EntityWrapperZhizuoshipinEntity();ew.allEq(MPUtil.allEQMapPre( zhizuoshipin, zhizuoshipin)); return R.ok().put(data, zhizuoshipinService.selectListView(ew));}/*** 查询*/RequestMapping(/query)public R query(ZhizuoshipinEntity zhizuoshipin){EntityWrapper ZhizuoshipinEntity ew new EntityWrapper ZhizuoshipinEntity();ew.allEq(MPUtil.allEQMapPre( zhizuoshipin, zhizuoshipin)); ZhizuoshipinView zhizuoshipinView zhizuoshipinService.selectView(ew);return R.ok(查询制作视频成功).put(data, zhizuoshipinView);}/*** 后端详情*/RequestMapping(/info/{id})public R info(PathVariable(id) Long id){ZhizuoshipinEntity zhizuoshipin zhizuoshipinService.selectById(id);zhizuoshipin.setClicknum(zhizuoshipin.getClicknum()1);zhizuoshipin.setClicktime(new Date());zhizuoshipinService.updateById(zhizuoshipin);return R.ok().put(data, zhizuoshipin);}/*** 前端详情*/IgnoreAuthRequestMapping(/detail/{id})public R detail(PathVariable(id) Long id){ZhizuoshipinEntity zhizuoshipin zhizuoshipinService.selectById(id);zhizuoshipin.setClicknum(zhizuoshipin.getClicknum()1);zhizuoshipin.setClicktime(new Date());zhizuoshipinService.updateById(zhizuoshipin);return R.ok().put(data, zhizuoshipin);}/*** 赞或踩*/RequestMapping(/thumbsup/{id})public R thumbsup(PathVariable(id) String id,String type){ZhizuoshipinEntity zhizuoshipin zhizuoshipinService.selectById(id);if(type.equals(1)) {zhizuoshipin.setThumbsupnum(zhizuoshipin.getThumbsupnum()1);} else {zhizuoshipin.setCrazilynum(zhizuoshipin.getCrazilynum()1);}zhizuoshipinService.updateById(zhizuoshipin);return R.ok();}/*** 后端保存*/RequestMapping(/save)public R save(RequestBody ZhizuoshipinEntity zhizuoshipin, HttpServletRequest request){zhizuoshipin.setId(new Date().getTime()new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(zhizuoshipin);zhizuoshipinService.insert(zhizuoshipin);return R.ok();}/*** 前端保存*/RequestMapping(/add)public R add(RequestBody ZhizuoshipinEntity zhizuoshipin, HttpServletRequest request){zhizuoshipin.setId(new Date().getTime()new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(zhizuoshipin);zhizuoshipinService.insert(zhizuoshipin);return R.ok();}/*** 修改*/RequestMapping(/update)public R update(RequestBody ZhizuoshipinEntity zhizuoshipin, HttpServletRequest request){//ValidatorUtils.validateEntity(zhizuoshipin);zhizuoshipinService.updateById(zhizuoshipin);//全部更新return R.ok();}/*** 删除*/RequestMapping(/delete)public R delete(RequestBody Long[] ids){zhizuoshipinService.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));}}WrapperZhizuoshipinEntity wrapper new EntityWrapperZhizuoshipinEntity();if(map.get(remindstart)!null) {wrapper.ge(columnName, map.get(remindstart));}if(map.get(remindend)!null) {wrapper.le(columnName, map.get(remindend));}int count zhizuoshipinService.selectCount(wrapper);return R.ok().put(count, count);}/*** 前端智能排序*/IgnoreAuthRequestMapping(/autoSort)public R autoSort(RequestParam MapString, Object params,ZhizuoshipinEntity zhizuoshipin, HttpServletRequest request,String pre){EntityWrapperZhizuoshipinEntity ew new EntityWrapperZhizuoshipinEntity();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 zhizuoshipinService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, zhizuoshipin), params), params));return R.ok().put(data, page);}}
http://www.sadfv.cn/news/441574/

相关文章:

  • 宁德城乡建设部网站首页营销型网站的价格
  • 顺德网站建设原创怎么建设网站啊
  • 郑州的网站公司哪家好花关键词排名系统
  • 平面设计师个人网站事业单位网站设计
  • 出名的网站建设公司在北京大学生做家教的网站
  • 做一元云购网站唐山建设网站
  • 进行企业网站建设规划wordpress浏览插件
  • 电商网站开发平台实验最新的新开传奇网站
  • wordpress 修改文章id制定 网站改版优化方案
  • wordpress网站访问量献县制作网站
  • 不允许做企业网站wordpress phpcms 开发
  • 普洱市网站建设制作自己做的网站为什么不显示图片
  • 接网站建设_网站设计小程序制作实惠首选华网天下
  • 海南网站seo阿里云wordpress升级
  • 织梦网站404怎么做外贸网站啥需要掌握在自己手里
  • 做采集网站百度快照投诉中心
  • 网站制作的流程是什么求几个夸克没封的a站2023
  • 福建建设执业资格网站报名系统如果做夺宝网站
  • 平度市网站建设英文二手汽车网站建设
  • 广州企业模板建站网站建设中+网页代码
  • 一般做网站费用wordpress全站背景音乐
  • 怎样开发网站建设贵州省住房和城乡建设厅电话
  • 长沙建网站一般要多少钱手机论坛
  • cms 导航网站庆阳网站设计费用
  • a网站建设网站生成静态页面工具
  • 陕西省建设资质是哪个网站html5 自适应网站
  • 简述网站开发的基本流程图wordpress 主题 不显示
  • 网站首页结构怎么写精品课程网站建设项目验收单
  • 专门做游轮的网站网站文件夹命名seo
  • 2024年阳性什么症状河北优化seo