From c67654ac574af59a2da270e26c6901d0ed5e5318 Mon Sep 17 00:00:00 2001 From: tamguo Date: Thu, 5 Jul 2018 17:13:32 +0800 Subject: [PATCH] =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/tamguo/admin/model/QuestionEntity.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tamguo-admin/src/main/java/com/tamguo/admin/model/QuestionEntity.java b/tamguo-admin/src/main/java/com/tamguo/admin/model/QuestionEntity.java index dbca6d9..164c3f4 100644 --- a/tamguo-admin/src/main/java/com/tamguo/admin/model/QuestionEntity.java +++ b/tamguo-admin/src/main/java/com/tamguo/admin/model/QuestionEntity.java @@ -22,7 +22,7 @@ public class QuestionEntity extends SuperEntity implements Seria private String answer; - private BigInteger chapterId; + private String chapterId; private String questionType; @@ -36,7 +36,7 @@ public class QuestionEntity extends SuperEntity implements Seria private String year; - private Integer score; + private String score; private String auditStatus; @@ -68,11 +68,11 @@ public class QuestionEntity extends SuperEntity implements Seria this.answer = answer; } - public BigInteger getChapterId() { + public String getChapterId() { return this.chapterId; } - public void setChapterId(BigInteger chapterId) { + public void setChapterId(String chapterId) { this.chapterId = chapterId; } @@ -108,11 +108,11 @@ public class QuestionEntity extends SuperEntity implements Seria this.year = year; } - public Integer getScore() { + public String getScore() { return score; } - public void setScore(Integer score) { + public void setScore(String score) { this.score = score; }