|
@@ -1,6 +1,7 @@
|
|
package com.keao.edu.user.page;
|
|
package com.keao.edu.user.page;
|
|
|
|
|
|
import com.keao.edu.common.page.QueryInfo;
|
|
import com.keao.edu.common.page.QueryInfo;
|
|
|
|
+import com.keao.edu.user.enums.SongTypeEnum;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
public class ExamSongQueryInfo extends QueryInfo {
|
|
public class ExamSongQueryInfo extends QueryInfo {
|
|
@@ -11,6 +12,15 @@ public class ExamSongQueryInfo extends QueryInfo {
|
|
@ApiModelProperty(value = "级别")
|
|
@ApiModelProperty(value = "级别")
|
|
private Integer level;
|
|
private Integer level;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "曲目名")
|
|
|
|
+ private String songName;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "作者名")
|
|
|
|
+ private String songAuthor;
|
|
|
|
+
|
|
|
|
+ @ApiModelProperty(value = "曲目类别")
|
|
|
|
+ private SongTypeEnum type;
|
|
|
|
+
|
|
public Integer getLevel() {
|
|
public Integer getLevel() {
|
|
return level;
|
|
return level;
|
|
}
|
|
}
|
|
@@ -26,4 +36,28 @@ public class ExamSongQueryInfo extends QueryInfo {
|
|
public void setSubjectList(Integer subjectList) {
|
|
public void setSubjectList(Integer subjectList) {
|
|
this.subjectList = subjectList;
|
|
this.subjectList = subjectList;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public String getSongName() {
|
|
|
|
+ return songName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSongName(String songName) {
|
|
|
|
+ this.songName = songName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getSongAuthor() {
|
|
|
|
+ return songAuthor;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSongAuthor(String songAuthor) {
|
|
|
|
+ this.songAuthor = songAuthor;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public SongTypeEnum getType() {
|
|
|
|
+ return type;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setType(SongTypeEnum type) {
|
|
|
|
+ this.type = type;
|
|
|
|
+ }
|
|
}
|
|
}
|