package com.zcloud.controller.onlinexxks; import com.zcloud.controller.base.BaseController; import com.zcloud.entity.Page; import com.zcloud.entity.PageData; import com.zcloud.service.onlinexxks.CourseExamService; import com.zcloud.util.DateUtil; import com.zcloud.util.Jurisdiction; import com.zcloud.util.ObjectExcelView; import com.zcloud.util.Tools; import org.apache.shiro.authz.annotation.RequiresPermissions; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.servlet.ModelAndView; import java.util.*; /** * 说明:课程考试 * 作者:luoxiaobao * 时间:2021-09-13 * 官网:www.zcloudchina.com */ @Controller @RequestMapping("/courseexam") public class CourseExamController extends BaseController { @Autowired private CourseExamService courseexamService; /**新增 * @param * @throws Exception */ @RequestMapping(value="/add") // @RequiresPermissions("courseexam:add") @ResponseBody public Object add() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd.put("COURSEEXAM_ID", this.get32UUID()); //主键 pd.put("USER_ID", Jurisdiction.getUSER_ID()); //添加人 String nowDate = DateUtil.date2Str(new Date()); pd.put("EXAMTIME", nowDate); //考试时间 pd.put("EXAMQUESTIONRIGHT", "0"); //考试对题数 pd.put("EXAMQUESTIONWRONG", "0"); //考试错题数 pd.put("EXAMSCORE", "0"); //考试得分 pd.put("CREATOR", Jurisdiction.getUsername()); //添加人 pd.put("CREATTIME", nowDate); //添加时间 pd.put("OPERATOR", Jurisdiction.getUsername()); //修改人 pd.put("OPERATTIME", nowDate); //修改时间 pd.put("ISDELETE", "0"); //是否删除(0:有效 1:删除) pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID()); //企业ID courseexamService.save(pd); map.put("pd", pd); map.put("result", errInfo); return map; } /**删除 * @param * @throws Exception */ @RequestMapping(value="/delete") // @RequiresPermissions("courseexam:del") @ResponseBody public Object delete() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd.put("OPERATOR", Jurisdiction.getUsername()); //修改人 pd.put("OPERATTIME", DateUtil.date2Str(new Date())); //修改时间 courseexamService.delete(pd); map.put("result", errInfo); //返回结果 return map; } /**修改 * @param * @throws Exception */ @RequestMapping(value="/edit") @RequiresPermissions("courseexam:edit") @ResponseBody public Object edit() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd.put("OPERATOR", Jurisdiction.getUsername()); //修改人 pd.put("OPERATTIME", DateUtil.date2Str(new Date())); //修改时间 courseexamService.edit(pd); map.put("pd", pd); map.put("result", errInfo); return map; } /**列表 * @param page * @throws Exception */ @RequestMapping(value="/list") @RequiresPermissions("courseexam:list") @ResponseBody public Object list(Page page) throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); String KEYWORDS = pd.getString("KEYWORDS"); //关键词检索条件 if(Tools.notEmpty(KEYWORDS))pd.put("KEYWORDS", KEYWORDS.trim()); pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID()); //企业ID page.setPd(pd); List varList = courseexamService.list(page); //列出CourseExam列表 map.put("varList", varList); map.put("page", page); map.put("result", errInfo); return map; } /**去修改页面获取数据 * @param * @throws Exception */ @RequestMapping(value="/goEdit") @RequiresPermissions("courseexam:edit") @ResponseBody public Object goEdit() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd = courseexamService.findById(pd); //根据ID读取 map.put("pd", pd); map.put("result", errInfo); return map; } /**批量删除 * @param * @throws Exception */ @RequestMapping(value="/deleteAll") @RequiresPermissions("courseexam:del") @ResponseBody public Object deleteAll() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd.put("OPERATOR", Jurisdiction.getUsername()); //修改人 pd.put("OPERATTIME", DateUtil.date2Str(new Date())); //修改时间 String DATA_IDS = pd.getString("DATA_IDS"); if(Tools.notEmpty(DATA_IDS)){ String[] ArrayDATA_IDS = DATA_IDS.split(","); pd.put("ArrayDATA_IDS", ArrayDATA_IDS); //待删除ids courseexamService.deleteAll(pd); errInfo = "success"; }else{ errInfo = "fail"; } map.put("result", errInfo); //返回结果 return map; } /**导出到excel * @param * @throws Exception */ @RequestMapping(value="/excel") @RequiresPermissions("toExcel") public ModelAndView exportExcel() throws Exception{ ModelAndView mv = new ModelAndView(); PageData pd = new PageData(); pd = this.getPageData(); Map dataMap = new HashMap(); List titles = new ArrayList(); titles.add("课程ID"); //1 titles.add("课程试卷ID"); //2 titles.add("学员ID"); //3 titles.add("考试时间"); //4 titles.add("考试总题数"); //5 titles.add("考试对题数"); //6 titles.add("考试错题数"); //7 titles.add("考试得分"); //8 titles.add("添加人"); //9 titles.add("添加时间"); //10 titles.add("修改人"); //11 titles.add("修改时间"); //12 titles.add("是否删除(0:有效 1:删除)"); //13 titles.add("企业ID"); //14 dataMap.put("titles", titles); pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID()); //企业ID List varOList = courseexamService.listAll(pd); List varList = new ArrayList(); for(int i=0;i map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd.put("COURSEEXAM_ID", this.get32UUID()); //主键 pd.put("USER_ID", Jurisdiction.getUSER_ID()); //添加人 String nowDate = DateUtil.date2Str(new Date()); // pd.put("EXAMTIME", nowDate); //考试时间 pd.put("EXAMQUESTIONRIGHT", "0"); //考试对题数 pd.put("EXAMQUESTIONWRONG", "0"); //考试错题数 pd.put("EXAMSCORE", "0"); //考试得分 pd.put("CREATOR", Jurisdiction.getUsername()); //添加人 pd.put("CREATTIME", nowDate); //添加时间 pd.put("OPERATOR", Jurisdiction.getUsername()); //修改人 pd.put("OPERATTIME", nowDate); //修改时间 pd.put("ISDELETE", "0"); //是否删除(0:有效 1:删除) pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID()); //企业ID pd = courseexamService.submit(pd); map.put("pd", pd); map.put("result", errInfo); return map; } /**试卷答题展示 * @param * @throws Exception */ @RequestMapping(value="/findResult") // @RequiresPermissions("courseexam:edit") @ResponseBody public Object findResult() throws Exception{ Map map = new HashMap(); String errInfo = "success"; PageData pd = new PageData(); pd = this.getPageData(); pd = courseexamService.findResult(pd); //根据ID读取 map.put("pd", pd); map.put("result", errInfo); return map; } }