提交 3231134e 编写于 作者: minghao.wu's avatar minghao.wu

feature: 新增字段显示题目是否已发布

上级 c492c0fa
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
<groupId>com.pica.cloud.online.exam</groupId> <groupId>com.pica.cloud.online.exam</groupId>
<artifactId>pica-cloud-analysis-common</artifactId> <artifactId>pica-cloud-analysis-common</artifactId>
<name>pica-cloud-analysis-common</name> <name>pica-cloud-analysis-common</name>
<version>1.0.8</version> <version>1.0.9</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<properties> <properties>
......
...@@ -10,6 +10,8 @@ public class ExamTitleReplyDetailDto { ...@@ -10,6 +10,8 @@ public class ExamTitleReplyDetailDto {
private Integer roundId; private Integer roundId;
private Integer published;
private ExamTitleDto examTitle; private ExamTitleDto examTitle;
private ReplyDto reply; private ReplyDto reply;
...@@ -40,6 +42,14 @@ public class ExamTitleReplyDetailDto { ...@@ -40,6 +42,14 @@ public class ExamTitleReplyDetailDto {
this.roundId = roundId; this.roundId = roundId;
} }
public Integer getPublished() {
return published;
}
public void setPublished(Integer published) {
this.published = published;
}
public ExamTitleDto getExamTitle() { public ExamTitleDto getExamTitle() {
return examTitle; return examTitle;
} }
......
...@@ -12,6 +12,8 @@ public class ExamTitleReplyDto { ...@@ -12,6 +12,8 @@ public class ExamTitleReplyDto {
private Integer roundId; private Integer roundId;
private Integer published;
private ExamTitleDto examTitle; private ExamTitleDto examTitle;
private List<ReplyDto> replyList; private List<ReplyDto> replyList;
...@@ -42,6 +44,14 @@ public class ExamTitleReplyDto { ...@@ -42,6 +44,14 @@ public class ExamTitleReplyDto {
this.roundId = roundId; this.roundId = roundId;
} }
public Integer getPublished() {
return published;
}
public void setPublished(Integer published) {
this.published = published;
}
public ExamTitleDto getExamTitle() { public ExamTitleDto getExamTitle() {
return examTitle; return examTitle;
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册