parent
7a15fd22ad
commit
3d8031a20c
@ -0,0 +1,45 @@
|
|||||||
|
package com.ruoyi.web.controller.exam;
|
||||||
|
|
||||||
|
import com.ruoyi.common.core.controller.BaseController;
|
||||||
|
import com.ruoyi.common.core.page.TableDataInfo;
|
||||||
|
import com.ruoyi.system.domain.exam.dto.ExamDTO;
|
||||||
|
import com.ruoyi.system.domain.userexam.dto.request.UserExamReqDTO;
|
||||||
|
import com.ruoyi.system.domain.userexam.dto.response.UserExamRespDTO;
|
||||||
|
import com.ruoyi.web.controller.manager.UserExamManager;
|
||||||
|
import io.swagger.annotations.Api;
|
||||||
|
import io.swagger.annotations.ApiOperation;
|
||||||
|
import org.springframework.stereotype.Controller;
|
||||||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.ResponseBody;
|
||||||
|
|
||||||
|
import javax.annotation.Resource;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* packageName com.ruoyi.web.controller.exam
|
||||||
|
*
|
||||||
|
* @author wangxy
|
||||||
|
* @version JDK 8
|
||||||
|
* @className UserExamController
|
||||||
|
* @date 2024/7/3
|
||||||
|
* @description 考试详情
|
||||||
|
*/
|
||||||
|
@Api("考试详情")
|
||||||
|
@Controller
|
||||||
|
@RequestMapping("/system/userExam")
|
||||||
|
public class UserExamController extends BaseController {
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private UserExamManager userExamManager;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiOperation("考试详情")
|
||||||
|
@PostMapping("/list")
|
||||||
|
@ResponseBody
|
||||||
|
public TableDataInfo list(UserExamReqDTO reqDTO) {
|
||||||
|
startPage();
|
||||||
|
List<UserExamRespDTO> list = userExamManager.selectExamList(reqDTO);
|
||||||
|
return getDataTable(list);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,48 @@
|
|||||||
|
package com.ruoyi.system.domain.userexam.dto;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>
|
||||||
|
* 考试记录数据传输类
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* @author 聪明笨狗
|
||||||
|
* @since 2020-09-21 15:13
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel(value="考试记录", description="考试记录")
|
||||||
|
public class UserExamDTO implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
|
||||||
|
private String id;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "用户ID")
|
||||||
|
private String userId;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "考试ID")
|
||||||
|
private String examId;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "考试次数")
|
||||||
|
private Integer tryCount;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "最高分数")
|
||||||
|
private Integer maxScore;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "是否通过")
|
||||||
|
private Boolean passed;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "创建时间")
|
||||||
|
private Date createTime;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "更新时间")
|
||||||
|
private Date updateTime;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,30 @@
|
|||||||
|
package com.ruoyi.system.domain.userexam.dto.request;
|
||||||
|
|
||||||
|
import com.ruoyi.system.domain.userexam.dto.UserExamDTO;
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>
|
||||||
|
* 考试记录数据传输类
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* @author 聪明笨狗
|
||||||
|
* @since 2020-09-21 15:13
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel(value="考试记录", description="考试记录")
|
||||||
|
public class UserExamReqDTO extends UserExamDTO {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "考试名称")
|
||||||
|
private String title;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "人员名称")
|
||||||
|
private String userName;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,29 @@
|
|||||||
|
package com.ruoyi.system.domain.userexam.dto.response;
|
||||||
|
|
||||||
|
import com.ruoyi.system.domain.userexam.dto.UserExamDTO;
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>
|
||||||
|
* 考试记录数据传输类
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* @author 聪明笨狗
|
||||||
|
* @since 2020-09-21 15:13
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@ApiModel(value="考试记录", description="考试记录")
|
||||||
|
public class UserExamRespDTO extends UserExamDTO {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "考试名称")
|
||||||
|
private String title;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "人员名称")
|
||||||
|
private String userName;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue