|
@@ -1,5 +1,6 @@
|
|
|
package com.ym.mec.biz.dal.dto;
|
|
|
|
|
|
+import com.ym.mec.biz.dal.entity.MusicGroupStudentFee;
|
|
|
import com.ym.mec.biz.dal.enums.ClassGroupTypeEnum;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
@@ -37,9 +38,20 @@ public class CourseListDto {
|
|
|
@ApiModelProperty(value = "单节课时",required = true)
|
|
|
private Integer singleClassMinutes;
|
|
|
|
|
|
- @ApiModelProperty(value = "0待续费,1已续费",required = true)
|
|
|
+// @ApiModelProperty(value = "0待续费,1已续费",required = true)
|
|
|
private Integer renewStatus = 0;
|
|
|
|
|
|
+ //续费状态
|
|
|
+ private MusicGroupStudentFee.PaymentStatus paymentStatus;
|
|
|
+
|
|
|
+ public MusicGroupStudentFee.PaymentStatus getPaymentStatus() {
|
|
|
+ return paymentStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPaymentStatus(MusicGroupStudentFee.PaymentStatus paymentStatus) {
|
|
|
+ this.paymentStatus = paymentStatus;
|
|
|
+ }
|
|
|
+
|
|
|
public ClassGroupTypeEnum getType() {
|
|
|
return type;
|
|
|
}
|