|
@@ -5,6 +5,8 @@ import io.swagger.annotations.ApiModelProperty;
|
|
|
import com.ym.mec.biz.dal.enums.YesOrNoEnum;
|
|
|
import com.ym.mec.common.page.QueryInfo;
|
|
|
|
|
|
+import javax.xml.crypto.Data;
|
|
|
+
|
|
|
public class StudentRegistrationQueryInfo extends QueryInfo {
|
|
|
|
|
|
@ApiModelProperty(value = "乐团编号",required = false)
|
|
@@ -25,6 +27,12 @@ public class StudentRegistrationQueryInfo extends QueryInfo {
|
|
|
@ApiModelProperty(value = "用户名或手机号",required = false)
|
|
|
private String name;
|
|
|
|
|
|
+ @ApiModelProperty(value = "年级",required = false)
|
|
|
+ private String currentGrade;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "入学年份",required = false)
|
|
|
+ private String createYear;
|
|
|
+
|
|
|
private boolean isExport = false;
|
|
|
|
|
|
public boolean getIsExport() {
|
|
@@ -82,4 +90,20 @@ public class StudentRegistrationQueryInfo extends QueryInfo {
|
|
|
public void setPaymentStatus(String paymentStatus) {
|
|
|
this.paymentStatus = paymentStatus;
|
|
|
}
|
|
|
+
|
|
|
+ public String getCreateYear() {
|
|
|
+ return createYear;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCreateYear(String createYear) {
|
|
|
+ this.createYear = createYear;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCurrentGrade() {
|
|
|
+ return currentGrade;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCurrentGrade(String currentGrade) {
|
|
|
+ this.currentGrade = currentGrade;
|
|
|
+ }
|
|
|
}
|