|
@@ -18,6 +18,13 @@ public class StudentPreRegistrationQueryInfo extends QueryInfo {
|
|
|
@ApiModelProperty(value = "用户名或手机号",required = false)
|
|
|
private String name;
|
|
|
|
|
|
+ @ApiModelProperty(value = "乐器提供方式",required = false)
|
|
|
+ private String kitPurchaseMethod;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "云教练提供方式",required = false)
|
|
|
+ private String cloudTeacherMethod;
|
|
|
+
|
|
|
+
|
|
|
|
|
|
public String getName() {
|
|
|
return name;
|
|
@@ -51,4 +58,19 @@ public class StudentPreRegistrationQueryInfo extends QueryInfo {
|
|
|
this.isAllowAdjust = isAllowAdjust;
|
|
|
}
|
|
|
|
|
|
+ public String getKitPurchaseMethod() {
|
|
|
+ return kitPurchaseMethod;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setKitPurchaseMethod(String kitPurchaseMethod) {
|
|
|
+ this.kitPurchaseMethod = kitPurchaseMethod;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCloudTeacherMethod() {
|
|
|
+ return cloudTeacherMethod;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCloudTeacherMethod(String cloudTeacherMethod) {
|
|
|
+ this.cloudTeacherMethod = cloudTeacherMethod;
|
|
|
+ }
|
|
|
}
|