|
@@ -2,11 +2,8 @@ package com.ym.mec.biz.dal.page;
|
|
|
|
|
|
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)
|
|
@@ -24,6 +21,9 @@ public class StudentRegistrationQueryInfo extends QueryInfo {
|
|
|
@ApiModelProperty(value = "学员缴费状态 0-未开启缴费 1-开启缴费 2-已缴费",required = false)
|
|
|
private String paymentStatus;
|
|
|
|
|
|
+ @ApiModelProperty(value = "学员在读状态",required = false)
|
|
|
+ private String studentStatus;
|
|
|
+
|
|
|
@ApiModelProperty(value = "用户名或手机号",required = false)
|
|
|
private String name;
|
|
|
|
|
@@ -103,7 +103,15 @@ public class StudentRegistrationQueryInfo extends QueryInfo {
|
|
|
this.paymentStatus = paymentStatus;
|
|
|
}
|
|
|
|
|
|
- public String getCreateYear() {
|
|
|
+ public String getStudentStatus() {
|
|
|
+ return studentStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentStatus(String studentStatus) {
|
|
|
+ this.studentStatus = studentStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCreateYear() {
|
|
|
return createYear;
|
|
|
}
|
|
|
|