UserPaper.java 2.4 KB
package com.skua.modules.edu.entity;

import java.io.Serializable;
import java.util.Date;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.TableField;
import com.skua.core.aspect.annotation.Dict;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
import org.jeecgframework.poi.excel.annotation.Excel;

/**
 * 在线考试
 */
@Data
@TableName("edu_user_paper")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value="edu_user_paper对象", description="在线考试")
public class UserPaper {
    
	/**主键*/
	@TableId(type = IdType.ID_WORKER_STR)
    @ApiModelProperty(value = "主键")
	private String id;
	/**试卷编号*/
	@Excel(name = "试卷编号", width = 15)
    @ApiModelProperty(value = "试卷编号")
	@Dict(dictTable = "edu_paper", dicCode = "id",dicText = "paper_title")
	private String paperId;
	/**部门编号*/
	@Excel(name = "部门编号", width = 15)
    @ApiModelProperty(value = "部门编号")
	private String departId;
	/**参加考试用户编号*/
	@Excel(name = "参加考试用户编号", width = 15)
    @ApiModelProperty(value = "参加考试用户编号")
	private String userId;
	/**考试开始时间*/
	@Excel(name = "考试开始时间", width = 15)
    @ApiModelProperty(value = "考试开始时间")
	private String startTime;
	/**考试结束时间*/
	@Excel(name = "考试结束时间", width = 15)
    @ApiModelProperty(value = "考试结束时间")
	private String endTime;
	/**总分数*/
	@Excel(name = "总分数", width = 15)
    @ApiModelProperty(value = "总分数")
	private String score;
	/**名次*/
	@Excel(name = "名次", width = 15)
    @ApiModelProperty(value = "名次")
	private String rank;

	@ApiModelProperty(value = "用户签名")
	private String  signature;


	public UserPaper(){

	}

	public UserPaper(String paperId,  String userId, String startTime, String endTime,String   signature) {
		this.paperId = paperId;
		this.userId = userId;
		this.startTime = startTime;
		this.endTime = endTime;
		this.signature = signature;
	}
}