|
|
@ -4,6 +4,8 @@ import io.swagger.annotations.ApiModel;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import javax.validation.constraints.NotBlank;
|
|
|
|
|
|
|
|
import javax.validation.constraints.NotNull;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
|
@ -26,15 +28,18 @@ public class QuDTO implements Serializable {
|
|
|
|
private String id;
|
|
|
|
private String id;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "题目类型")
|
|
|
|
@ApiModelProperty(value = "题目类型")
|
|
|
|
|
|
|
|
@NotNull(message = "题目类型不能为空")
|
|
|
|
private Integer quType;
|
|
|
|
private Integer quType;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "1普通,2较难")
|
|
|
|
@ApiModelProperty(value = "1普通,2较难")
|
|
|
|
|
|
|
|
@NotNull(message = "难度等级不能为空")
|
|
|
|
private Integer level;
|
|
|
|
private Integer level;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "题目图片")
|
|
|
|
@ApiModelProperty(value = "题目图片")
|
|
|
|
private String image;
|
|
|
|
private String image;
|
|
|
|
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "题目内容")
|
|
|
|
@ApiModelProperty(value = "题目内容")
|
|
|
|
|
|
|
|
@NotBlank(message = "题目内容不能为空")
|
|
|
|
private String content;
|
|
|
|
private String content;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|