You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
814 B
30 lines
814 B
/***********************************************************
|
|
* @Description : 问题选项的自定义实体类
|
|
* @author : 梁山广(Laing Shan Guang)
|
|
* @date : 2019-06-01 09:45
|
|
* @email : liangshanguang2@gmail.com
|
|
***********************************************************/
|
|
package lsgwr.exam.vo;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class QuestionOptionVo {
|
|
// 题目选项ID
|
|
@JsonProperty("id")
|
|
private String questionOptionId;
|
|
|
|
// 题目选项内容
|
|
@JsonProperty("content")
|
|
private String questionOptionContent;
|
|
|
|
// 是否为答案
|
|
@JsonProperty("answer")
|
|
private Boolean answer = false;
|
|
|
|
// 题目选项描述
|
|
@JsonProperty("description")
|
|
private String questionOptionDescription;
|
|
}
|