作者简介:Java领域优质创作者、CSDN博客专家 、CSDN内容合伙人、掘金特邀作者、阿里云博客专家、51CTO特邀作者、多年架构师设计经验、多年校企合作经验,被多个学校常年聘为校外企业导师,指导学生毕业设计并参与学生毕业答辩指导,有较为丰富的相关经验。期待与各位高校教师、企业讲师以及同行交流合作
主要内容:Java项目、Python项目、前端项目、PHP、ASP.NET、人工智能与大数据、单片机开发、物联网设计与开发设计、简历模板、学习资料、面试题库、技术互助、就业指导等
业务范围:免费功能设计、开题报告、任务书、中期检查PPT、系统功能实现、代码编写、论文编写和辅导、论文降重、长期答辩答疑辅导、腾讯会议一对一专业讲解辅导答辩、模拟答辩演练、和理解代码逻辑思路等。
收藏点赞不迷路 关注作者有好处
文末获取源码
项目编号:BS-GX-088
一,环境介绍
语言环境:Java: jdk1.8
数据库:Mysql: mysql5.7
应用服务器:Tomcat: tomcat8.5.31
开发工具:IDEA或eclipse
二,项目简介
高校三评是指评优、评先、评奖学金,三评的目的是将学校中根据各项指标表现比较优异的学生进行筛选,对优秀的学生进行奖励,以便树立榜样的力量,形成良性循环,为学校树立一个好的风气。以往的三评工作学校一般都是通过学生申请,学校教务处和学业导师根据学生日常考核进行评定,然后对评定结果进行公示,基本上所有的操作由人工作操作并管理数据。本次课题所研究的三评申请审核系统,主要是利用信息化技术手段,奖学生的三评工作通过信息化系统来进行流程化管理,所有的数据通过本系统进行管理,即提高了三评工作的效率,又使得数据更加真实可靠透明,体现了评选工作的公平性。
经过查阅文献资料,并对相似的案例进行参考学习,了解了本系统所应该具有的相关功能模块,经分析系统有三个用户角色。系统管理员拥有最高权限,可以对三评申请审核系统中的所有业务数据和人员信息进行管理和审核,学生进入系统后可以进行相关信息的查看,并填写相关的申报信息,由老师进行审核处理,并可以查看审核的结果以及最终的评选结果。系统实现采用前后端分离开发实现,后端采用SpringBoot框架来开发接口及业务实现,前端采用Vue框架来开发实现前端页面,并使用Ajax与后台接口异步交互处理。系统经过测试功能相关完整,实现了预期的目标要求,可以用于高校的三评工作。
三,系统展示
四,核心代码展示
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.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.XueshengchengjiEntity;
import com.entity.view.XueshengchengjiView;
import com.service.XueshengchengjiService;
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 2022-07-29 07:02:57
*/
@RestController
@RequestMapping("/xueshengchengji")
public class XueshengchengjiController {
@Autowired
private XueshengchengjiService xueshengchengjiService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,XueshengchengjiEntity xueshengchengji,
HttpServletRequest request){
String tableName = request.getSession().getAttribute("tableName").toString();
if(tableName.equals("xuesheng")) {
xueshengchengji.setXuehao((String)request.getSession().getAttribute("username"));
}
EntityWrapper<XueshengchengjiEntity> ew = new EntityWrapper<XueshengchengjiEntity>();
PageUtils page = xueshengchengjiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, xueshengchengji), params), params));
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@IgnoreAuth
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,XueshengchengjiEntity xueshengchengji,
HttpServletRequest request){
EntityWrapper<XueshengchengjiEntity> ew = new EntityWrapper<XueshengchengjiEntity>();
PageUtils page = xueshengchengjiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, xueshengchengji), params), params));
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( XueshengchengjiEntity xueshengchengji){
EntityWrapper<XueshengchengjiEntity> ew = new EntityWrapper<XueshengchengjiEntity>();
ew.allEq(MPUtil.allEQMapPre( xueshengchengji, "xueshengchengji"));
return R.ok().put("data", xueshengchengjiService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(XueshengchengjiEntity xueshengchengji){
EntityWrapper< XueshengchengjiEntity> ew = new EntityWrapper< XueshengchengjiEntity>();
ew.allEq(MPUtil.allEQMapPre( xueshengchengji, "xueshengchengji"));
XueshengchengjiView xueshengchengjiView = xueshengchengjiService.selectView(ew);
return R.ok("查询学生成绩成功").put("data", xueshengchengjiView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
XueshengchengjiEntity xueshengchengji = xueshengchengjiService.selectById(id);
return R.ok().put("data", xueshengchengji);
}
/**
* 前端详情
*/
@IgnoreAuth
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
XueshengchengjiEntity xueshengchengji = xueshengchengjiService.selectById(id);
return R.ok().put("data", xueshengchengji);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody XueshengchengjiEntity xueshengchengji, HttpServletRequest request){
xueshengchengji.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(xueshengchengji);
xueshengchengjiService.insert(xueshengchengji);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody XueshengchengjiEntity xueshengchengji, HttpServletRequest request){
xueshengchengji.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(xueshengchengji);
xueshengchengjiService.insert(xueshengchengji);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
@Transactional
public R update(@RequestBody XueshengchengjiEntity xueshengchengji, HttpServletRequest request){
//ValidatorUtils.validateEntity(xueshengchengji);
xueshengchengjiService.updateById(xueshengchengji);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
xueshengchengjiService.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<XueshengchengjiEntity> wrapper = new EntityWrapper<XueshengchengjiEntity>();
if(map.get("remindstart")!=null) {
wrapper.ge(columnName, map.get("remindstart"));
}
if(map.get("remindend")!=null) {
wrapper.le(columnName, map.get("remindend"));
}
String tableName = request.getSession().getAttribute("tableName").toString();
if(tableName.equals("xuesheng")) {
wrapper.eq("xuehao", (String)request.getSession().getAttribute("username"));
}
int count = xueshengchengjiService.selectCount(wrapper);
return R.ok().put("count", count);
}
}
五,相关作品展示
基于Java开发、Python开发、PHP开发、C#开发等相关语言开发的实战项目
基于Nodejs、Vue等前端技术开发的前端实战项目
基于微信小程序和安卓APP应用开发的相关作品
基于51单片机等嵌入式物联网开发应用
基于各类算法实现的AI智能应用
基于大数据实现的各类数据管理和推荐系统
标签:map,Vue,SpringBoot,xueshengchengji,new,import,com,三评,RequestMapping From: https://blog.csdn.net/whirlwind526/article/details/143108838