|
@@ -12,10 +12,10 @@ public class MusicGroupStudentQueryInfo extends QueryInfo {
|
|
|
private String musicGroupId;
|
|
|
|
|
|
@ApiModelProperty(value = "学员状态 NORMAL(NORMAL, 在读), LEAVE(LEAVE, 请假), QUIT(QUIT, 退班)",required = false)
|
|
|
- private Integer studentStatus;
|
|
|
+ private String studentStatus;
|
|
|
|
|
|
@ApiModelProperty(value = "缴费状态 PAID_COMPLETED(完成缴费), NON_PAYMENT(未缴费), PROCESSING(缴费中)",required = false)
|
|
|
- private Integer paymentStatus;
|
|
|
+ private String paymentStatus;
|
|
|
|
|
|
public String getMusicGroupId() {
|
|
|
return musicGroupId;
|
|
@@ -33,19 +33,19 @@ public class MusicGroupStudentQueryInfo extends QueryInfo {
|
|
|
this.subjectId = subjectId;
|
|
|
}
|
|
|
|
|
|
- public Integer getStudentStatus() {
|
|
|
+ public String getStudentStatus() {
|
|
|
return studentStatus;
|
|
|
}
|
|
|
|
|
|
- public void setStudentStatus(Integer studentStatus) {
|
|
|
+ public void setStudentStatus(String studentStatus) {
|
|
|
this.studentStatus = studentStatus;
|
|
|
}
|
|
|
|
|
|
- public Integer getPaymentStatus() {
|
|
|
+ public String getPaymentStatus() {
|
|
|
return paymentStatus;
|
|
|
}
|
|
|
|
|
|
- public void setPaymentStatus(Integer paymentStatus) {
|
|
|
+ public void setPaymentStatus(String paymentStatus) {
|
|
|
this.paymentStatus = paymentStatus;
|
|
|
}
|
|
|
}
|