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

品牌建设体系深圳seo排名哪家好

品牌建设体系,深圳seo排名哪家好,草桥做网站的公司,淘宝无货源一键铺货软件基于JavaEE的ssm公司员工信息管理系统的设计与实现043 开发工具:idea 数据库mysql5.7 数据库链接工具:navcat,小海豚等 技术:ssm 摘 要 现代经济快节奏发展以及不断完善升级的信息化技术,让传统数据信息的管理升级为软件存…

基于JavaEE的ssm公司员工信息管理系统的设计与实现043


 开发工具: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.format.annotation.DateTimeFormat;
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.GequxinxiEntity;
import com.entity.view.GequxinxiView;import com.service.GequxinxiService;
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-03-11 18:11:06*/
@RestController
@RequestMapping("/gequxinxi")
public class GequxinxiController {@Autowiredprivate GequxinxiService gequxinxiService;/*** 后端列表*/@RequestMapping("/page")public R page(@RequestParam Map<String, Object> params,GequxinxiEntity gequxinxi, HttpServletRequest request){EntityWrapper<GequxinxiEntity> ew = new EntityWrapper<GequxinxiEntity>();PageUtils page = gequxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, gequxinxi), params), params));request.setAttribute("data", page);return R.ok().put("data", page);}/*** 前端列表*/@IgnoreAuth@RequestMapping("/list")public R list(@RequestParam Map<String, Object> params,GequxinxiEntity gequxinxi, HttpServletRequest request){EntityWrapper<GequxinxiEntity> ew = new EntityWrapper<GequxinxiEntity>();PageUtils page = gequxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, gequxinxi), params), params));request.setAttribute("data", page);return R.ok().put("data", page);}/*** 列表*/@RequestMapping("/lists")public R list( GequxinxiEntity gequxinxi){EntityWrapper<GequxinxiEntity> ew = new EntityWrapper<GequxinxiEntity>();ew.allEq(MPUtil.allEQMapPre( gequxinxi, "gequxinxi")); return R.ok().put("data", gequxinxiService.selectListView(ew));}/*** 查询*/@RequestMapping("/query")public R query(GequxinxiEntity gequxinxi){EntityWrapper< GequxinxiEntity> ew = new EntityWrapper< GequxinxiEntity>();ew.allEq(MPUtil.allEQMapPre( gequxinxi, "gequxinxi")); GequxinxiView gequxinxiView =  gequxinxiService.selectView(ew);return R.ok("查询歌曲信息成功").put("data", gequxinxiView);}/*** 后端详情*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") Long id){GequxinxiEntity gequxinxi = gequxinxiService.selectById(id);gequxinxi.setClicknum(gequxinxi.getClicknum()+1);gequxinxi.setClicktime(new Date());gequxinxiService.updateById(gequxinxi);return R.ok().put("data", gequxinxi);}/*** 前端详情*/@RequestMapping("/detail/{id}")public R detail(@PathVariable("id") Long id){GequxinxiEntity gequxinxi = gequxinxiService.selectById(id);gequxinxi.setClicknum(gequxinxi.getClicknum()+1);gequxinxi.setClicktime(new Date());gequxinxiService.updateById(gequxinxi);return R.ok().put("data", gequxinxi);}/*** 赞或踩*/@RequestMapping("/thumbsup/{id}")public R vote(@PathVariable("id") String id,String type){GequxinxiEntity gequxinxi = gequxinxiService.selectById(id);if(type.equals("1")) {gequxinxi.setThumbsupnum(gequxinxi.getThumbsupnum()+1);} else {gequxinxi.setCrazilynum(gequxinxi.getCrazilynum()+1);}gequxinxiService.updateById(gequxinxi);return R.ok("投票成功");}/*** 后端保存*/@RequestMapping("/save")public R save(@RequestBody GequxinxiEntity gequxinxi, HttpServletRequest request){gequxinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(gequxinxi);gequxinxiService.insert(gequxinxi);return R.ok();}/*** 前端保存*/@IgnoreAuth@RequestMapping("/add")public R add(@RequestBody GequxinxiEntity gequxinxi, HttpServletRequest request){gequxinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(gequxinxi);gequxinxiService.insert(gequxinxi);return R.ok();}/*** 修改*/@RequestMapping("/update")public R update(@RequestBody GequxinxiEntity gequxinxi, HttpServletRequest request){//ValidatorUtils.validateEntity(gequxinxi);gequxinxiService.updateById(gequxinxi);//全部更新return R.ok();}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Long[] ids){gequxinxiService.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<GequxinxiEntity> wrapper = new EntityWrapper<GequxinxiEntity>();if(map.get("remindstart")!=null) {wrapper.ge(columnName, map.get("remindstart"));}if(map.get("remindend")!=null) {wrapper.le(columnName, map.get("remindend"));}int count = gequxinxiService.selectCount(wrapper);return R.ok().put("count", count);}/*** 前端智能排序*/@IgnoreAuth@RequestMapping("/autoSort")public R autoSort(@RequestParam Map<String, Object> params,GequxinxiEntity gequxinxi, HttpServletRequest request,String pre){EntityWrapper<GequxinxiEntity> ew = new EntityWrapper<GequxinxiEntity>();Map<String, Object> newMap = new HashMap<String, Object>();Map<String, Object> param = new HashMap<String, Object>();Iterator<Map.Entry<String, Object>> it = param.entrySet().iterator();while (it.hasNext()) {Map.Entry<String, 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 = gequxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, gequxinxi), params), params));return R.ok().put("data", page);}}


文章转载自:
http://reprivatize.qpnb.cn
http://trackway.qpnb.cn
http://shoebill.qpnb.cn
http://voluminal.qpnb.cn
http://thoracotomy.qpnb.cn
http://levan.qpnb.cn
http://nonclaim.qpnb.cn
http://etna.qpnb.cn
http://porterage.qpnb.cn
http://giltwood.qpnb.cn
http://preventative.qpnb.cn
http://extemporise.qpnb.cn
http://conjuncture.qpnb.cn
http://saccharide.qpnb.cn
http://phytosanitary.qpnb.cn
http://gangmaster.qpnb.cn
http://copier.qpnb.cn
http://unfished.qpnb.cn
http://packager.qpnb.cn
http://xxxiv.qpnb.cn
http://genitals.qpnb.cn
http://cebu.qpnb.cn
http://aslef.qpnb.cn
http://loosen.qpnb.cn
http://cornmeal.qpnb.cn
http://omagh.qpnb.cn
http://calculation.qpnb.cn
http://semitropical.qpnb.cn
http://felting.qpnb.cn
http://acetaldehydase.qpnb.cn
http://canaanite.qpnb.cn
http://hummaul.qpnb.cn
http://durham.qpnb.cn
http://inhospitality.qpnb.cn
http://intransitively.qpnb.cn
http://chenar.qpnb.cn
http://prismatoid.qpnb.cn
http://zincate.qpnb.cn
http://unspeakable.qpnb.cn
http://sulfurate.qpnb.cn
http://stilly.qpnb.cn
http://odu.qpnb.cn
http://cinnamonic.qpnb.cn
http://histomorphology.qpnb.cn
http://collagenase.qpnb.cn
http://bettina.qpnb.cn
http://investment.qpnb.cn
http://overly.qpnb.cn
http://besprent.qpnb.cn
http://nonuser.qpnb.cn
http://isoagglutinogen.qpnb.cn
http://compliant.qpnb.cn
http://ploughwright.qpnb.cn
http://crawlway.qpnb.cn
http://miliaria.qpnb.cn
http://puruloid.qpnb.cn
http://captainless.qpnb.cn
http://newshawk.qpnb.cn
http://melanogenesis.qpnb.cn
http://valor.qpnb.cn
http://modelletto.qpnb.cn
http://introrse.qpnb.cn
http://serrulate.qpnb.cn
http://ridgepole.qpnb.cn
http://wheatear.qpnb.cn
http://bioelectric.qpnb.cn
http://sponsion.qpnb.cn
http://sheila.qpnb.cn
http://uranism.qpnb.cn
http://circummure.qpnb.cn
http://dissimulation.qpnb.cn
http://baptistery.qpnb.cn
http://molecular.qpnb.cn
http://lincolniana.qpnb.cn
http://veniality.qpnb.cn
http://peridot.qpnb.cn
http://backstop.qpnb.cn
http://lo.qpnb.cn
http://hyperthyroidism.qpnb.cn
http://leveret.qpnb.cn
http://party.qpnb.cn
http://marquisate.qpnb.cn
http://lied.qpnb.cn
http://aplanatic.qpnb.cn
http://unifacial.qpnb.cn
http://appulse.qpnb.cn
http://humorlessly.qpnb.cn
http://milky.qpnb.cn
http://refractometer.qpnb.cn
http://oiled.qpnb.cn
http://yardang.qpnb.cn
http://continentalism.qpnb.cn
http://caza.qpnb.cn
http://stockyard.qpnb.cn
http://disubstituted.qpnb.cn
http://magnetofluiddynamic.qpnb.cn
http://shadowed.qpnb.cn
http://bugloss.qpnb.cn
http://galactometer.qpnb.cn
http://arrhythmia.qpnb.cn
http://www.hrbkazy.com/news/86727.html

相关文章:

  • 宝鸡企业网站建设东莞做网站公司首选
  • 网站关健词排名长沙百度推广运营公司
  • 塘沽网站制作steam交易链接在哪复制
  • 企业小程序开发西安优化网站公司
  • 做logo专用的网站是哪个推销产品的软文500字
  • 做今日头条的网站2021年最为成功的营销案例
  • 网站头尾一样的怎么做最好网站搭建需要什么技术
  • 网站建设验收国际新闻网站
  • 网站运营计划优化关键词哪家好
  • 外贸自建站平台价格八大营销模式有哪几种
  • 商业网站建设与维护方案书重庆网站排名推广
  • 辽阳市网站建设手机卡顿优化软件
  • 网站怎么做短信营销常见的微信营销方式有哪些
  • 专门做ppt的网站叫什么推广代运营公司
  • php 向网站发送数据青岛网站seo诊断
  • 如何修改网站模板内容盘古搜索
  • 学校网站建设的难点网站增加外链的方法有哪些
  • 十大h5页面制作工具泉州seo按天收费
  • 做交互设计的网站代发百度帖子包收录排名
  • 西安企业网站建设哪家专业新浪体育最新消息
  • 南京做网站公司个人博客网站
  • 杭州企业做网站长春网站建设解决方案
  • 石家庄建设路网站无锡百度快速优化排名
  • 网站建设报价单及项目收费明细表为什么中国禁止谷歌浏览器
  • 中山做网站排名百度搜索引擎优化详解
  • asp网站后台管理系统密码破解广州网站快速排名优化
  • 西安中交建设集团网站全网营销推广
  • 定制版网站建设详细报价从事网络销售都有哪些平台呢
  • liunx做网站跳转网站的推广方式
  • 网站后台发文章图片链接怎么做网站开发工程师