|
@@ -1,16 +1,12 @@
|
|
|
package com.miaxis.question.domain;
|
|
|
|
|
|
-import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
-import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
-import com.miaxis.common.annotation.Excel;
|
|
|
-import com.miaxis.common.core.domain.BaseEntity;
|
|
|
-import io.swagger.annotations.ApiModel;
|
|
|
-import io.swagger.annotations.ApiModelProperty;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
-import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
-import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.miaxis.common.annotation.Excel;
|
|
|
import com.miaxis.common.core.domain.BaseBusinessEntity;
|
|
|
+import io.swagger.annotations.ApiModel;
|
|
|
+import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
|
/**
|
|
|
* 题库对象 question_info
|
|
@@ -121,9 +117,9 @@ public class QuestionInfo extends BaseBusinessEntity{
|
|
|
|
|
|
/** 1 */
|
|
|
@Excel(name = "1")
|
|
|
- @TableField("explain")
|
|
|
+ @TableField("explain1")
|
|
|
@ApiModelProperty(value = "1")
|
|
|
- private byte[] explain;
|
|
|
+ private byte[] explain1;
|
|
|
|
|
|
/** 1 */
|
|
|
@Excel(name = "1")
|
|
@@ -204,39 +200,4 @@ public class QuestionInfo extends BaseBusinessEntity{
|
|
|
private Long m;
|
|
|
|
|
|
|
|
|
- @Override
|
|
|
- public String toString() {
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("questionId", getQuestionId())
|
|
|
- .append("mediaType", getMediaType())
|
|
|
- .append("chapterId", getChapterId())
|
|
|
- .append("label", getLabel())
|
|
|
- .append("question", getQuestion())
|
|
|
- .append("mediaKey", getMediaKey())
|
|
|
- .append("answer", getAnswer())
|
|
|
- .append("optionA", getOptionA())
|
|
|
- .append("optionB", getOptionB())
|
|
|
- .append("optionC", getOptionC())
|
|
|
- .append("optionD", getOptionD())
|
|
|
- .append("optionE", getOptionE())
|
|
|
- .append("optionF", getOptionF())
|
|
|
- .append("optionG", getOptionG())
|
|
|
- .append("optionH", getOptionH())
|
|
|
- .append("explain", getExplain())
|
|
|
- .append("conciseExplain", getConciseExplain())
|
|
|
- .append("keywords", getKeywords())
|
|
|
- .append("assuredKeywords", getAssuredKeywords())
|
|
|
- .append("illiteracyExplain", getIlliteracyExplain())
|
|
|
- .append("illiteracyKeywords", getIlliteracyKeywords())
|
|
|
- .append("difficulty", getDifficulty())
|
|
|
- .append("wrongRate", getWrongRate())
|
|
|
- .append("optionType", getOptionType())
|
|
|
- .append("knackKeyword", getKnackKeyword())
|
|
|
- .append("knackImgUrl", getKnackImgUrl())
|
|
|
- .append("knackDetail", getKnackDetail())
|
|
|
- .append("knackVoiceTxt", getKnackVoiceTxt())
|
|
|
- .append("m", getM())
|
|
|
- .toString();
|
|
|
- }
|
|
|
}
|