package com.controller;
import java.math.BigDecimal;
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.transaction.annotation.Transactional;
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.XueshengEntity;
import com.entity.view.XueshengView;
import com.service.XueshengService;
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;
/**
* 学生
* 后端接口
* @author
* @email
* @date 2023-02-20 10:44:33
*/
@RestController
@RequestMapping("/xuesheng")
public class XueshengController {
@Autowired
private XueshengService xueshengService;
@Autowired
private TokenService tokenService;
/**
* 登录
*/
@IgnoreAuth
@RequestMapping(value = "/login")
public R login(String username, String password, String captcha, HttpServletRequest request) {
XueshengEntity u = xueshengService.selectOne(new EntityWrapper<XueshengEntity>().eq("xueshengzhanghao", username));
if(u==null || !u.getMima().equals(password)) {
return R.error("账号或密码不正确");
}
String token = tokenService.generateToken(u.getId(), username,"xuesheng", "学生" );
return R.ok().put("token", token);
}
/**
* 注册
*/
@IgnoreAuth
@RequestMapping("/register")
public R register(@RequestBody XueshengEntity xuesheng){
//ValidatorUtils.validateEntity(xuesheng);
XueshengEntity u = xueshengService.selectOne(new EntityWrapper<XueshengEntity>().eq("xueshengzhanghao", xuesheng.getXueshengzhanghao()));
if(u!=null) {
return R.error("注册用户已存在");
}
Long uId = new Date().getTime();
xuesheng.setId(uId);
xueshengService.insert(xuesheng);
return R.ok();
}
/**
* 退出
*/
@RequestMapping("/logout")
public R logout(HttpServletRequest request) {
request.getSession().invalidate();
return R.ok("退出成功");
}
/**
* 获取用户的session用户信息
*/
@RequestMapping("/session")
public R getCurrUser(HttpServletRequest request){
Long id = (Long)request.getSession().getAttribute("userId");
XueshengEntity u = xueshengService.selectById(id);
return R.ok().put("data", u);
}
/**
* 密码重置
*/
@IgnoreAuth
@RequestMapping(value = "/resetPass")
public R resetPass(String username, HttpServletRequest request){
XueshengEntity u = xueshengService.selectOne(new EntityWrapper<XueshengEntity>().eq("xueshengzhanghao", username));
if(u==null) {
return R.error("账号不存在");
}
u.setMima("123456");
xueshengService.updateById(u);
return R.ok("密码已重置为:123456");
}
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,XueshengEntity xuesheng,
HttpServletRequest request){
EntityWrapper<XueshengEntity> ew = new EntityWrapper<XueshengEntity>();
PageUtils page = xueshengService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, xuesheng), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@IgnoreAuth
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,XueshengEntity xuesheng,
HttpServletRequest request){
EntityWrapper<XueshengEntity> ew = new EntityWrapper<XueshengEntity>();
PageUtils page = xueshengService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, xuesheng), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( XueshengEntity xuesheng){
EntityWrapper<XueshengEntity> ew = new EntityWrapper<XueshengEntity>();
ew.allEq(MPUtil.allEQMapPre( xuesheng, "xuesheng"));
return R.ok().put("data", xueshengService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(XueshengEntity xuesheng){
EntityWrapper< XueshengEntity> ew = new EntityWrapper< XueshengEntity>();
ew.allEq(MPUtil.allEQMapPre( xuesheng, "xuesheng"));
XueshengView xueshengView = xueshengService.selectView(ew);
return R.ok("查询学生成功").put("data", xueshengView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
XueshengEntity xuesheng = xueshengService.selectById(id);
return R.ok().put("data", xuesheng);
}
/**
* 前端详情
*/
@IgnoreAuth
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
XueshengEntity xuesheng = xueshengService.selectById(id);
return R.ok().put("data", xuesheng);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody XueshengEntity xuesheng, HttpServletRequest request){
xuesheng.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(xuesheng);
XueshengEntity u = xueshengService.selectOne(new EntityWrapper<XueshengEntity>().eq("xueshengzhanghao", xuesheng.getXueshengzhanghao()));
if(u!=null) {
return R.error("用户已存在");
}
xuesheng.setId(new Date().getTime());
xueshengService.insert(xuesheng);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody XueshengEntity xuesheng, HttpServletRequest request){
xuesheng.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(xuesheng);
XueshengEntity u = xueshengService.selectOne(new EntityWrapper<XueshengEntity>().eq("xueshengzhanghao", xuesheng.getXueshengzhanghao()));
if(u!=null) {
return R.error("用户已存在");
}
xuesheng.setId(new Date().getTime());
xueshengService.insert(xuesheng);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
@Transactional
public R update(@RequestBody XueshengEntity xuesheng, HttpServletRequest request){
//ValidatorUtils.validateEntity(xuesheng);
xueshengService.updateById(xuesheng);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
xueshengService.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", co
没有合适的资源?快使用搜索试试~ 我知道了~
b264基于Hadoop的高校固定资产管理系统-springboot+vue.zip(可运行源码+sql文件+)
共524个文件
java:163个
svg:161个
vue:58个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 31 浏览量
2024-07-26
21:31:48
上传
评论
收藏 10.99MB ZIP 举报
温馨提示
基于Hadoop的高校固定资产管理系统是一个很好的项目,结合了后端(Spring Boot)和前端(Vue.js)技术,实现了前后端分离。 基于Hadoop的高校固定资产管理系统是一个很好的项目,结合了后端(Spring Boot)和前端(Vue.js)技术,实现了前后端分离。 基于Hadoop的高校固定资产管理系统是一个很好的项目,结合了后端(Spring Boot)和前端(Vue.js)技术,实现了前后端分离。 基于Hadoop的高校固定资产管理系统是一个很好的项目,结合了后端(Spring Boot)和前端(Vue.js)技术,实现了前后端分离。 基于Hadoop的高校固定资产管理系统是一个很好的项目,结合了后端(Spring Boot)和前端(Vue.js)技术,实现了前后端分离。 基于Hadoop的高校固定资产管理系统是一个很好的项目,结合了后端(Spring Boot)和前端(Vue.js)技术,实现了前后端分离。 基于Hadoop的高校固定资产管理系统是一个很好的项目,结合了后端(Spring Boot)和前端(Vue.js)技术,实现了前后端分离。
资源推荐
资源详情
资源评论
收起资源包目录
b264基于Hadoop的高校固定资产管理系统-springboot+vue.zip(可运行源码+sql文件+) (524个子文件)
update-password.vue.bak 3KB
main.js.bak 2KB
IndexMain.vue.bak 2KB
IndexAsideStatic.vue.bak 2KB
BreadCrumbs.vue.bak 2KB
IndexHeader.vue.bak 2KB
3-build.bat 15B
2-run.bat 14B
1-install.bat 12B
.classpath 2KB
mvnw.cmd 7KB
app.86ce5e34.css 354KB
chunk-vendors.a72b0961.css 37KB
canvas-bg-1.css 391B
canvas-bg-2.css 83B
canvas-bg-5.css 61B
canvas-bg-4.css 61B
canvas-bg-3.css 61B
springboothot14数据库文档.doc 1.56MB
springboot开发文档.docx 14KB
.factorypath 15KB
.gitignore 364B
index.html 1010B
index.html 644B
favicon.ico 4KB
favicon.ico 4KB
maven-wrapper.jar 50KB
XueshengController.java 9KB
YuangongController.java 9KB
CaigouController.java 9KB
BaiduUtil.java 8KB
LingyongxinxiController.java 7KB
CommonController.java 7KB
JieyongxinxiController.java 7KB
ZichanweixiuController.java 7KB
ZichanbaoxiuController.java 7KB
ZichanpandianController.java 7KB
GudingzichanController.java 7KB
ZichandiaoboController.java 7KB
ZichanbaofeiController.java 7KB
ZichancaigouController.java 7KB
ZichanweihuController.java 7KB
ZichanrukuController.java 7KB
ZichanfenleiController.java 7KB
GudingzichanEntity.java 6KB
JieyongxinxiEntity.java 5KB
UsersController.java 5KB
MPUtil.java 5KB
ZichanbaoxiuEntity.java 5KB
MavenWrapperDownloader.java 5KB
ZichanweixiuEntity.java 5KB
GudingzichanModel.java 5KB
LingyongxinxiEntity.java 5KB
GudingzichanVO.java 5KB
JieyongxinxiModel.java 4KB
ZichanpandianEntity.java 4KB
ZichandiaoboEntity.java 4KB
ZichanweihuEntity.java 4KB
ZichancaigouEntity.java 4KB
ZichanrukuEntity.java 4KB
JieyongxinxiVO.java 4KB
FileController.java 4KB
ZichanbaoxiuModel.java 4KB
ZichanbaofeiEntity.java 4KB
ZichanbaoxiuVO.java 4KB
XueshengEntity.java 4KB
YuangongEntity.java 4KB
ZichanweixiuModel.java 3KB
LingyongxinxiModel.java 3KB
CaigouEntity.java 3KB
ZichanweixiuVO.java 3KB
AuthorizationInterceptor.java 3KB
LingyongxinxiVO.java 3KB
ConfigController.java 3KB
ZichanpandianModel.java 3KB
ZichandiaoboModel.java 3KB
ZichanweihuModel.java 3KB
ZichanrukuModel.java 3KB
ZichancaigouModel.java 3KB
ZichanpandianVO.java 3KB
ZichandiaoboVO.java 3KB
ZichanweihuVO.java 3KB
ZichanrukuVO.java 3KB
ZichancaigouVO.java 3KB
ZichanbaofeiModel.java 3KB
Query.java 3KB
ZichanbaofeiVO.java 3KB
TokenServiceImpl.java 2KB
YuangongModel.java 2KB
XueshengModel.java 2KB
CommonUtil.java 2KB
XueshengVO.java 2KB
YuangongVO.java 2KB
TokenEntity.java 2KB
CaigouModel.java 2KB
ZichanfenleiEntity.java 2KB
CaigouVO.java 2KB
LingyongxinxiServiceImpl.java 2KB
ZichanpandianServiceImpl.java 2KB
ZichanbaoxiuServiceImpl.java 2KB
共 524 条
- 1
- 2
- 3
- 4
- 5
- 6
资源评论
大叔_爱编程
- 粉丝: 6450
- 资源: 3832
下载权益
C知道特权
VIP文章
课程特权
开通VIP
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- Java基于springboot的上课考勤系统源码+说明文档.zip文件
- 直流电机双闭环调速(p1-p2) 永磁同步电机电流滞环闭环调速(p3-p4) 永磁同步电机电流滞环与SVPWM调速对比(p5-p6) 异步电机滞环电流调速(p7-p8)
- Simulink仿真:基于SOC阈值控制策略的电池均衡(组内+组间) 参考文献:视频讲解 仿真平台:MATLAB Simulink 主要内容:利用boost-buck电路对6块电池进行组内均衡和组间均
- 软件项目+验收材料+编码方案
- 基于二阶自抗扰ADRC的轨迹跟踪控制,对车辆的不确定性和外界干扰具有一定抗干扰性,跟踪轨迹为双移线 有对应复现资料
- 基于滑膜控制smc的3辆协同自适应巡航控制,上层滑膜控制器产生期望加速度,下层通过油门和刹车控制车速,实现自适应巡航控制 个人觉得从结果图中看出基于滑膜控制的效果非常好,不亚于模型预测控制mpc
- Delphi 12 控件之DOCXReadWrite D11 D12
- 基于滑膜控制的后轮主动(ARS)和DYC的协调稳定性控制,上层根据模糊控制规则和滑膜控制产生期望后轮转角ARS和附加横摆力矩Mz,下层采用基于附着系数和车速对附加横摆力矩进行分配,控制效果良好,能实现
- Delphi 12 控件之Delphi in Depth - FireDAC.rar
- 基于微信小程序的校园互助系统源码+数据库.zip文件
- 四旋翼ADRC控制器仿真,已调好 已经生成C语言了,要放到单片机运行的伙伴可以拿去研究
- 毕业设计-基于Java+微信小程序的校园互助系统源码+数据库.zip文件
- 基于二次规划(QP)的路径规划和速度规划 matlab代码实现 + 详细文档 picewise jerk path picewise jerk speed 更新: c++版本已完成,qt可视化
- yolo+安全帽数据集+目标检测+机器视觉识别+6000张图片安全帽识别数据集
- 我的资料1234567890822368
- 毕业设计-基于Java+SpringBoot的校园互助系统微信小程序源码+数据库.zip文件
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功