|
@@ -1,21 +1,37 @@
|
|
|
package com.ym.mec.biz.dal.page;
|
|
|
|
|
|
-import com.ym.mec.biz.dal.entity.MusicGroupStudentFee;
|
|
|
-import com.ym.mec.biz.dal.enums.PaymentStatusEnum;
|
|
|
import com.ym.mec.common.page.QueryInfo;
|
|
|
|
|
|
public class MusicCalenderDetailQueryInfo extends QueryInfo {
|
|
|
|
|
|
private Integer userId;
|
|
|
|
|
|
- private MusicGroupStudentFee.PaymentStatus paymentStatus;
|
|
|
+ private String paymentStatus;
|
|
|
|
|
|
private Integer subjectId;
|
|
|
|
|
|
private String musicGroupId;
|
|
|
|
|
|
+ private String musicGroupStatus;
|
|
|
+
|
|
|
private Long id;
|
|
|
|
|
|
+ public String getPaymentStatus() {
|
|
|
+ return paymentStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPaymentStatus(String paymentStatus) {
|
|
|
+ this.paymentStatus = paymentStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMusicGroupStatus() {
|
|
|
+ return musicGroupStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMusicGroupStatus(String musicGroupStatus) {
|
|
|
+ this.musicGroupStatus = musicGroupStatus;
|
|
|
+ }
|
|
|
+
|
|
|
public String getMusicGroupId() {
|
|
|
return musicGroupId;
|
|
|
}
|
|
@@ -40,14 +56,6 @@ public class MusicCalenderDetailQueryInfo extends QueryInfo {
|
|
|
this.userId = userId;
|
|
|
}
|
|
|
|
|
|
- public MusicGroupStudentFee.PaymentStatus getPaymentStatus() {
|
|
|
- return paymentStatus;
|
|
|
- }
|
|
|
-
|
|
|
- public void setPaymentStatus(MusicGroupStudentFee.PaymentStatus paymentStatus) {
|
|
|
- this.paymentStatus = paymentStatus;
|
|
|
- }
|
|
|
-
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|