PaperQuestion.java
1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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 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_paper_question")
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@ApiModel(value="edu_paper_question对象", description="在线考试--试卷试题表")
public class PaperQuestion {
/**主键*/
@TableId(type = IdType.ID_WORKER_STR)
@ApiModelProperty(value = "主键")
private String id;
/**试卷编号*/
@Excel(name = "试卷编号", width = 15)
@ApiModelProperty(value = "试卷编号")
private String paperId;
/**试题编号*/
@Excel(name = "试题编号", width = 15)
@ApiModelProperty(value = "试题编号")
private String questionId;
/**试题分值*/
@Excel(name = "试题分值", width = 15)
@ApiModelProperty(value = "试题分值")
private String score;
/**排序*/
@Excel(name = "排序", width = 15)
@ApiModelProperty(value = "排序")
private Integer sort;
public PaperQuestion(){
}
public PaperQuestion(String paperId, String questionId, String score, Integer sort) {
this.paperId = paperId;
this.questionId = questionId;
this.score = score;
this.sort = sort;
}
}