商务服务
【java毕业设计】高校物资采购管理系统源码(ssm+mysql+说明文档+LW).zip
2024-11-26 09:31
package com.controller;

【java毕业设计】高校物资采购管理系统源码(ssm+mysql+说明文档+LW).zip

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.GongyingshangEntity; import com.entity.view.GongyingshangView; import com.service.GongyingshangService; import com.service.TokenService; import com.utils.PageUtils; import com.utils.R; import com.utils.MD5Util; import com.utils.MPUtil; import com.utils.CommonUtil; import java.io.IOException; @RestController @RequestMapping("/gongyingshang") public class GongyingshangController { @Autowired private GongyingshangService gongyingshangService; @Autowired private TokenService tokenService; @IgnoreAuth @RequestMapping(value = "/login") public R login(String username, String password, String captcha, HttpServletRequest request) { GongyingshangEntity user = gongyingshangService.selectOne(new EntityWrapper<GongyingshangEntity>().eq("gongyingbianhao", username)); if(user==null || !user.getMima().equals(password)) { return R.error("账号或密码不正确"); } String token = tokenService.generateToken(user.getId(), username,"gongyingshang", "供应商" ); return R.ok().put("token", token); } @IgnoreAuth @RequestMapping("/register") public R register(@RequestBody GongyingshangEntity gongyingshang){ //ValidatorUtils.validateEntity(gongyingshang); GongyingshangEntity user = gongyingshangService.selectOne(new EntityWrapper<GongyingshangEntity>().eq("gongyingbianhao", gongyingshang.getGongyingbianhao())); if(user!=null) { return R.error("注册用户已存在"); } Long uId = new Date().getTime(); gongyingshang.setId(uId); gongyingshangService.insert(gongyingshang); return R.ok(); } @RequestMapping("/logout") public R logout(HttpServletRequest request) { request.getSession().invalidate(); return R.ok("退出成功"); } @RequestMapping("/session") public R getCurrUser(HttpServletRequest request){ Long id = (Long)request.getSession().getAttribute("userId"); GongyingshangEntity user = gongyingshangService.selectById(id); return R.ok().put("data", user); } @IgnoreAuth @RequestMapping(value = "/resetPass") public R resetPass(String username, HttpServletRequest request){ GongyingshangEntity user = gongyingshangService.selectOne(new EntityWrapper<GongyingshangEntity>().eq("gongyingbianhao", username)); if(user==null) { return R.error("账号不存在"); } user.setMima("123456"); gongyingshangService.updateById(user); return R.ok("密码已重置为:123456"); } @RequestMapping("/page") public R page(@RequestParam Map<String, Object> params,GongyingshangEntity gongyingshang, HttpServletRequest request){ EntityWrapper<GongyingshangEntity> ew = new EntityWrapper<GongyingshangEntity>(); PageUtils page = gongyingshangService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, gongyingshang), params), params)); request.setAttribute("data", page); return R.ok().put("data", page); } @IgnoreAuth @RequestMapping("/list") public R list(@RequestParam Map<String, Object> params,GongyingshangEntity gongyingshang, HttpServletRequest request){ EntityWrapper<GongyingshangEntity> ew = new EntityWrapper<GongyingshangEntity>(); PageUtils page = gongyingshangService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, gongyingshang), params), params)); request.setAttribute("data", page); return R.ok().put("data", page); } @RequestMapping("/lists") public R list( GongyingshangEntity gongyingshang){ EntityWrapper<GongyingshangEntity> ew = new EntityWrapper<GongyingshangEntity>(); ew.allEq(MPUtil.allEQMapPre( gongyingshang, "gongyingshang")); return R.ok().put("data", gongyingshangService.selectListView(ew)); } @RequestMapping("/query") public R query(GongyingshangEntity gongyingshang){ EntityWrapper< GongyingshangEntity> ew = new EntityWrapper< GongyingshangEntity>(); ew.allEq(MPUtil.allEQMapPre( gongyingshang, "gongyingshang")); GongyingshangView gongyingshangView = gongyingshangService.selectView(ew); return R.ok("查询供应商成功").put("data", gongyingshangView); } @RequestMapping("/info/{id}") public R info(@PathVariable("id") Long id){ GongyingshangEntity gongyingshang = gongyingshangService.selectById(id); return R.ok().put("data", gongyingshang); } @IgnoreAuth @RequestMapping("/detail/{id}") public R detail(@PathVariable("id") Long id){ GongyingshangEntity gongyingshang = gongyingshangService.selectById(id); return R.ok().put("data", gongyingshang); } @RequestMapping("/save") public R save(@RequestBody GongyingshangEntity gongyingshang, HttpServletRequest request){ gongyingshang.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue()); //ValidatorUtils.validateEntity(gongyingshang); GongyingshangEntity user = gongyingshangService.selectOne(new EntityWrapper<GongyingshangEntity>().eq("gongyingbianhao", gongyingshang.getGongyingbianhao())); if(user!=null) { return R.error("用户已存在"); } gongyingshang.setId(new Date().getTime()); gongyingshangService.insert(gongyingshang); return R.ok(); } @RequestMapping("/add") public R add(@RequestBody GongyingshangEntity gongyingshang, HttpServletRequest request){ gongyingshang.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue()); //ValidatorUtils.validateEntity(gongyingshang); GongyingshangEntity user = gongyingshangService.selectOne(new EntityWrapper<GongyingshangEntity>().eq("gongyingbianhao", gongyingshang.getGongyingbianhao())); if(user!=null) { return R.error("用户已存在"); } gongyingshang.setId(new Date().getTime()); gongyingshangService.insert(gongyingshang); return R.ok(); } @RequestMapping("/update") public R update(@RequestBody GongyingshangEntity gongyingshang, HttpServletRequest request){ //ValidatorUtils.validateEntity(gongyingshang); gongyingshangService.updateById(gongyingshang);//全部更新 return R.ok(); }
    以上就是本篇文章【【java毕业设计】高校物资采购管理系统源码(ssm+mysql+说明文档+LW).zip】的全部内容了,欢迎阅览 ! 文章地址:http://www78564.xrbh.cn/news/28023.html 
     文章      相关文章      动态      同类文章      热门文章      栏目首页      网站地图      返回首页 迅博思语移动站 http://www78564.xrbh.cn/mobile/ , 查看更多   
最新文章
WordPress企业主题制作(定制)应该注意哪些事项?
选择制作方是首要关键的一个环节,几年前那种百度几百元买的网站,现在几百元又套在WordPress上作为企业主题,能用吗?能,但是基本是
Win10连接wifi显示“无Internet,安全”的解决方法【详解】
  电脑升级到 win10 64位系统 后难免会遇到一些故障问题,比如连接WiFi网络无线的时候都会出现无Internet,安全的提示,怎么办
TCLAI应用助力经济增长 2024年创效5.4亿元
在2024TCL全球技术创新大会上,TCL宣布通过AI技术应用,创造经济效益达5.4亿元,引发业界广泛关注。此次大会于12月11日在深圳举
如何通过SEO分享提升网站流量与排名
关键词是SEO的基础,也是提升排名的关键因素之一。通过深入的关键词分析,找出与自己业务相关且有较高搜索量的关键词,然后合理
企业互联网营销必备《SEO攻略》
原标题:企业互联网营销必备《SEO攻略》 从这里了解互联网 解读热点 推送营销新思维 自从我们千享科技推出SEO推广业务以来,收到
如何找到可靠的100个免费软件下载安装入口必备神器助你畅享互联时代!
如何找到可靠的免费软件下载安装入口在互联网时代,软件已经成为我们日常生活和工作中不可或缺的一部分。然而,寻找可靠的免费软
收获颇丰!黄金白银期货保证金(为投资者提供一个全面的理解框架)
黄金白银期货,作为全球金融市场中的重要组成部分,以其独特的避险属性和投资价值,吸引了无数投资者的目光。而在这一市场中,保
acfan 软件下载最新版
acfan软件下载最新版是一款非常火爆的动漫视频播放软件,这款软件里面为用户们提供了丰富多样的资源,在观看的时候,用户们还能
从收录检测到安全防护的SEO工具大全
总是有朋友问我们,有没一套较为完整的SEO所需工具大全,省得找来找去了,今天我们就给大家带来从收录到安全的SEO工具大全! 综
曝明年多家手机厂商将测试北斗通信 华为领先一个身段
  虽然其他国产厂商也在积极研发相关技术,但它们目前尚未获得使用北斗卫星通信系统的批准。这些厂商主要使用的是天通卫星通信