package jnpf.tmsEntity.selftest;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
/**
|
* 试卷选项(与前端对齐)
|
*/
|
@Data
|
public class TmsSelfTestOptionVO {
|
|
@Schema(description = "选项标识")
|
private String optionLabel;
|
|
@Schema(description = "选项内容")
|
private String optionContent;
|
|
@Schema(description = "是否正确 1/0")
|
private String isCorrect;
|
}
|