|
@@ -1,6 +1,6 @@
|
|
|
package com.ym.mec.biz.dal.dto;
|
|
|
|
|
|
-import com.ym.mec.biz.dal.enums.PaymentStatusEnum;
|
|
|
+import com.ym.mec.biz.dal.enums.PaymentFlagEnum;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
@@ -41,7 +41,7 @@ public class MusicGroupStudentsDto{
|
|
|
@ApiModelProperty(value = "学员状态 NORMAL(NORMAL, 在读), LEAVE(LEAVE, 请假), QUIT(QUIT, 退班)",required = false)
|
|
|
private String studentStatus;
|
|
|
|
|
|
- private PaymentStatusEnum paymentStatus;
|
|
|
+ private PaymentFlagEnum paymentStatus;
|
|
|
|
|
|
@ApiModelProperty(value = "是否新增学员(1是0否)",required = false)
|
|
|
private Integer isNewStudent;
|
|
@@ -170,11 +170,11 @@ public class MusicGroupStudentsDto{
|
|
|
this.studentStatus = studentStatus;
|
|
|
}
|
|
|
|
|
|
- public PaymentStatusEnum getPaymentStatus() {
|
|
|
+ public PaymentFlagEnum getPaymentStatus() {
|
|
|
return paymentStatus;
|
|
|
}
|
|
|
|
|
|
- public void setPaymentStatus(PaymentStatusEnum paymentStatus) {
|
|
|
+ public void setPaymentStatus(PaymentFlagEnum paymentStatus) {
|
|
|
this.paymentStatus = paymentStatus;
|
|
|
}
|
|
|
|