|
|
@@ -1,5 +1,6 @@
|
|
|
package com.ym.mec.biz.dal.page;
|
|
|
|
|
|
+import com.sun.org.apache.xpath.internal.operations.Bool;
|
|
|
import com.ym.mec.common.page.QueryInfo;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
@@ -13,7 +14,7 @@ import java.util.Date;
|
|
|
public class StudentCompetitionQueryInfo extends QueryInfo {
|
|
|
|
|
|
@ApiModelProperty(value = "性别")
|
|
|
- private boolean gender;
|
|
|
+ private Boolean gender;
|
|
|
|
|
|
@ApiModelProperty(value = "年级")
|
|
|
private String grade;
|
|
|
@@ -28,21 +29,29 @@ public class StudentCompetitionQueryInfo extends QueryInfo {
|
|
|
private Integer prizeLevel;
|
|
|
|
|
|
@ApiModelProperty(value = "是否展示")
|
|
|
- private boolean isShow;
|
|
|
+ private Boolean isShow;
|
|
|
|
|
|
@ApiModelProperty(value = "评价")
|
|
|
private String comment;
|
|
|
|
|
|
private java.util.Date createTime;
|
|
|
|
|
|
- public boolean isGender() {
|
|
|
+ public Boolean getGender() {
|
|
|
return gender;
|
|
|
}
|
|
|
|
|
|
- public void setGender(boolean gender) {
|
|
|
+ public void setGender(Boolean gender) {
|
|
|
this.gender = gender;
|
|
|
}
|
|
|
|
|
|
+ public Boolean getIsShow() {
|
|
|
+ return isShow;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsShow(Boolean show) {
|
|
|
+ isShow = show;
|
|
|
+ }
|
|
|
+
|
|
|
public String getGrade() {
|
|
|
return grade;
|
|
|
}
|
|
|
@@ -75,14 +84,6 @@ public class StudentCompetitionQueryInfo extends QueryInfo {
|
|
|
this.prizeLevel = prizeLevel;
|
|
|
}
|
|
|
|
|
|
- public boolean isShow() {
|
|
|
- return isShow;
|
|
|
- }
|
|
|
-
|
|
|
- public void setShow(boolean show) {
|
|
|
- isShow = show;
|
|
|
- }
|
|
|
-
|
|
|
public String getComment() {
|
|
|
return comment;
|
|
|
}
|