springboot005学生心理咨询评估系统
表4.5 用户
管理员管理用户信息,可以添加,修改,删除用户信息信息。下图就是用户信息管理页面。
管理员管理试卷信息,可以添加,修改,删除试卷信息信息。下图就是试卷信息管理页面。
管理员管理试题信息,可以添加,修改,删除试题信息信息。下图就是试题信息管理页面。
用户登录后可以在试卷列表找到试卷参考考试。下图就是试卷列表管理页面。
用户可以查看自己的考试记录。下图就是考试记录管理页面。
ExamrecordController.java
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.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