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.ZongchengjixinxiEntity;
import com.entity.view.ZongchengjixinxiView;
import com.service.ZongchengjixinxiService;
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-05-23 11:29:30
*/
@RestController
@RequestMapping("/zongchengjixinxi")
public class ZongchengjixinxiController {
@Autowired
private ZongchengjixinxiService zongchengjixinxiService;
/**
* 后端列表
*/
@RequestMapping("/page")
public R page(@RequestParam Map<String, Object> params,ZongchengjixinxiEntity zongchengjixinxi,
HttpServletRequest request){
String tableName = request.getSession().getAttribute("tableName").toString();
if(tableName.equals("xuesheng")) {
zongchengjixinxi.setXuehao((String)request.getSession().getAttribute("username"));
}
if(tableName.equals("jiaoshi")) {
zongchengjixinxi.setGonghao((String)request.getSession().getAttribute("username"));
}
EntityWrapper<ZongchengjixinxiEntity> ew = new EntityWrapper<ZongchengjixinxiEntity>();
PageUtils page = zongchengjixinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, zongchengjixinxi), params), params));
request.setAttribute("data", page);
return R.ok().put("data", page);
}
/**
* 前端列表
*/
@IgnoreAuth
@RequestMapping("/list")
public R list(@RequestParam Map<String, Object> params,ZongchengjixinxiEntity zongchengjixinxi,
HttpServletRequest request){
EntityWrapper<ZongchengjixinxiEntity> ew = new EntityWrapper<ZongchengjixinxiEntity>();
PageUtils page = zongchengjixinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, zongchengjixinxi), params), params));
request.setAttribute("data", page);
return R.ok().put("data", page);
}
/**
* 列表
*/
@RequestMapping("/lists")
public R list( ZongchengjixinxiEntity zongchengjixinxi){
EntityWrapper<ZongchengjixinxiEntity> ew = new EntityWrapper<ZongchengjixinxiEntity>();
ew.allEq(MPUtil.allEQMapPre( zongchengjixinxi, "zongchengjixinxi"));
return R.ok().put("data", zongchengjixinxiService.selectListView(ew));
}
/**
* 查询
*/
@RequestMapping("/query")
public R query(ZongchengjixinxiEntity zongchengjixinxi){
EntityWrapper< ZongchengjixinxiEntity> ew = new EntityWrapper< ZongchengjixinxiEntity>();
ew.allEq(MPUtil.allEQMapPre( zongchengjixinxi, "zongchengjixinxi"));
ZongchengjixinxiView zongchengjixinxiView = zongchengjixinxiService.selectView(ew);
return R.ok("查询总成绩信息成功").put("data", zongchengjixinxiView);
}
/**
* 后端详情
*/
@RequestMapping("/info/{id}")
public R info(@PathVariable("id") Long id){
ZongchengjixinxiEntity zongchengjixinxi = zongchengjixinxiService.selectById(id);
return R.ok().put("data", zongchengjixinxi);
}
/**
* 前端详情
*/
@IgnoreAuth
@RequestMapping("/detail/{id}")
public R detail(@PathVariable("id") Long id){
ZongchengjixinxiEntity zongchengjixinxi = zongchengjixinxiService.selectById(id);
return R.ok().put("data", zongchengjixinxi);
}
/**
* 后端保存
*/
@RequestMapping("/save")
public R save(@RequestBody ZongchengjixinxiEntity zongchengjixinxi, HttpServletRequest request){
zongchengjixinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(zongchengjixinxi);
zongchengjixinxiService.insert(zongchengjixinxi);
return R.ok();
}
/**
* 前端保存
*/
@RequestMapping("/add")
public R add(@RequestBody ZongchengjixinxiEntity zongchengjixinxi, HttpServletRequest request){
zongchengjixinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());
//ValidatorUtils.validateEntity(zongchengjixinxi);
zongchengjixinxiService.insert(zongchengjixinxi);
return R.ok();
}
/**
* 修改
*/
@RequestMapping("/update")
@Transactional
public R update(@RequestBody ZongchengjixinxiEntity zongchengjixinxi, HttpServletRequest request){
//ValidatorUtils.validateEntity(zongchengjixinxi);
zongchengjixinxiService.updateById(zongchengjixinxi);//全部更新
return R.ok();
}
/**
* 删除
*/
@RequestMapping("/delete")
public R delete(@RequestBody Long[] ids){
zongchengjixinxiService.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<ZongchengjixinxiEntity> wrapper = new EntityWrapper<ZongchengjixinxiEntity>();
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"));
}
if(tableName.equals("jiaoshi")) {
wrapper.eq("gonghao", (String)request.getSession().getAttribute("username"));
}
int count = zongchengjixinxiService.selectCount(wrapper);
return R.ok().put("count", count);
}
/**
* (按值统计)
*/
@RequestMapping("/value/{xColumnName}/{yColumnName}")
public R value(@PathVariable("yColumnName") Strin
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
功能说明: 管理员功能: 管理员登陆后,主要模块包括个人中心,学生管理,教师管理,课程类型管理,课程信息管理,权重设置管理,思想道德管理,拓展素质管理,平时成绩管理,成绩信息管理,考勤信息管理等功能。 学生功能: 学生登陆后,主要模块包括个人中心,课程信息管理,思想道德管理,拓展素质管理,平时成绩管理,成绩信息管理,考勤信息管理等功能。 教师功能: 教师登陆后,主要模块包括个人中心,课程信息管理,权重设置管理,思想道德管理,拓展素质管理,平时成绩管理,成绩信息管理,考勤信息管理等功能。环境说明: 开发语言:Java 框架:ssm,mybatis JDK版本:JDK1.8 数据库:mysql 5.7及以上 数据库工具:Navicat11及以上 开发软件:eclipse/idea Maven包:Maven3.3及以上 服务器:tomcat7及以上。。。
资源推荐
资源详情
资源评论
收起资源包目录
基于ssm的学生综合测评管理系统源码(java毕业设计完整源码+LW).zip (919个子文件)
styles.css.bak 23KB
index.jsp.bak 4KB
setMenu.js.bak 3KB
topNav.jsp.bak 1KB
.classpath 1KB
org.eclipse.wst.common.component 689B
org.eclipse.wst.jsdt.ui.superType.container 49B
bootstrap.min.css 141KB
bootstrap.css 120KB
style.css 66KB
ueditor.css 44KB
styles.css 41KB
ueditor.min.css 34KB
font-awesome.min.css 30KB
jquery.treetable.theme.default.css 25KB
animate.css 23KB
entypo-icon.css 23KB
all.css 21KB
font-awesome.css 21KB
video-js.css 21KB
image.css 19KB
jquery.idealforms.css 17KB
themify-icons.css 16KB
video.css 15KB
attachment.css 15KB
square.min.css 14KB
all.css 13KB
dropzone.css 11KB
video-js.min.css 11KB
bootstrap-switch.css 11KB
bootstrap-datetimepicker.min.css 11KB
extra-pages.css 11KB
ladda.min.css 10KB
tooltipster.css 9KB
calendar.css 9KB
responsive.css 8KB
shCoreDefault.css 7KB
social.css 7KB
jquery-jvectormap.css 6KB
clockface.css 6KB
jquery.steps.css 6KB
dripicon.css 5KB
weather-icons.min.css 5KB
footable.core.css 5KB
dataTables.bootstrap4.min.css 5KB
datepicker.css 5KB
tabelizer.min.css 5KB
datepicker.css 5KB
datepicker.css 5KB
footable.standalone.css 5KB
signin.css 5KB
media.css 5KB
slidebars.css 4KB
skin-select.css 4KB
datepicker.css 4KB
scrawl.css 4KB
DT_bootstrap.css 4KB
datepicker.css 4KB
bootstrap-timepicker.css 3KB
green.css 3KB
yellow.css 3KB
red.css 3KB
blue.css 3KB
violet.css 3KB
codemirror.css 3KB
bootstrap-colorpicker.css 3KB
maki-icons.css 3KB
jquery.treeview.css 3KB
profile.css 3KB
charts.css 3KB
background.css 2KB
bootstrap-wysihtml5.css 2KB
awwwards.css 2KB
jquery.stepy.css 2KB
responsive-table.css 2KB
emotion.css 2KB
dialogbase.css 2KB
jquery.pnotify.default.css 2KB
music.css 2KB
demo.css 1KB
acc-wizard.min.css 1KB
jquery.easy-pie-chart.css 1KB
pace-theme-center-simple.css 1KB
uploader.css 1KB
edittable.css 1KB
editor.css 1KB
template.css 1KB
jquery.tagsinput.css 992B
mail.css 840B
number-pb.css 737B
jquery.treetable.css 652B
datatables.responsive.css 618B
validate.css 581B
open-sans.css 567B
stacktable.css 565B
webuploader.css 515B
icons-style.css 490B
loader-style.css 483B
footable-demos.css 440B
morris.css 433B
共 919 条
- 1
- 2
- 3
- 4
- 5
- 6
- 10
资源评论
大学生资源网
- 粉丝: 142
- 资源: 3031
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 曼哈顿矢量边界行政边界shp
- #3综合设计资料给学生.rar
- 软包电芯自动上料&焊接设备sw18全套技术资料100%好用.zip
- 砂带打磨机二坐标移动sw20可编辑全套技术资料100%好用.zip
- 烧烤烙印机sw15可编辑全套技术资料100%好用.zip
- Hadoop_2024_Fa.zip
- 开中我_开中我.开中我.apk
- 软包锂电池自动上料设备sw18可编辑全套技术资料100%好用.zip
- 湿巾纸包装袋椭圆型盖贴合设备x_t全套技术资料100%好用.zip
- 升降料仓(含DFM)sw17可编辑全套技术资料100%好用.zip
- 手持式超声波切布ug12全套技术资料100%好用.zip
- 手机标签自动贴合sw17可编辑全套技术资料100%好用.zip
- 手机电池漏液检测设备sw18全套技术资料100%好用.zip
- 手机电池上料裁切设备sw18可编辑全套技术资料100%好用.zip
- 手机键冲切机x_t全套技术资料100%好用.zip
- 手机电池压合机sw18全套技术资料100%好用.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功