|
@@ -1,6 +1,7 @@
|
|
|
package com.ym.mec.biz.dal.dto;
|
|
|
|
|
|
import com.ym.mec.biz.dal.enums.PaymentFlagEnum;
|
|
|
+import com.ym.mec.biz.dal.enums.PaymentStatusEnum;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
@@ -8,6 +9,9 @@ import java.util.Date;
|
|
|
|
|
|
public class MusicGroupStudentsDto{
|
|
|
|
|
|
+ @ApiModelProperty(value = "学生乐团注册编号",required = false)
|
|
|
+ private Integer studentRegistrationId;
|
|
|
+
|
|
|
@ApiModelProperty(value = "学生编号",required = false)
|
|
|
private Integer userId;
|
|
|
|
|
@@ -47,7 +51,7 @@ public class MusicGroupStudentsDto{
|
|
|
@ApiModelProperty(value = "退团原因",required = false)
|
|
|
private String quitReason;
|
|
|
|
|
|
- private PaymentFlagEnum paymentStatus;
|
|
|
+ private PaymentStatusEnum paymentStatus;
|
|
|
|
|
|
@ApiModelProperty(value = "是否新增学员(1是0否)",required = false)
|
|
|
private Integer isNewStudent;
|
|
@@ -73,7 +77,7 @@ public class MusicGroupStudentsDto{
|
|
|
private BigDecimal subTotalCourseTime;
|
|
|
|
|
|
@ApiModelProperty(value = "欠费金额",required = false)
|
|
|
- private BigDecimal noPaymentAmount;
|
|
|
+ private BigDecimal noPaymentAmount = BigDecimal.ZERO;
|
|
|
|
|
|
@ApiModelProperty(value = "关心包:0:默认不可用;1:可用;2:已使用;")
|
|
|
private Integer carePackage;
|
|
@@ -83,6 +87,14 @@ public class MusicGroupStudentsDto{
|
|
|
private Integer comeOnPackage;
|
|
|
private String comeOnPackageStr;
|
|
|
|
|
|
+ public Integer getStudentRegistrationId() {
|
|
|
+ return studentRegistrationId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentRegistrationId(Integer studentRegistrationId) {
|
|
|
+ this.studentRegistrationId = studentRegistrationId;
|
|
|
+ }
|
|
|
+
|
|
|
public String getCarePackageStr() {
|
|
|
return carePackageStr;
|
|
|
}
|
|
@@ -251,11 +263,11 @@ public class MusicGroupStudentsDto{
|
|
|
this.studentStatus = studentStatus;
|
|
|
}
|
|
|
|
|
|
- public PaymentFlagEnum getPaymentStatus() {
|
|
|
+ public PaymentStatusEnum getPaymentStatus() {
|
|
|
return paymentStatus;
|
|
|
}
|
|
|
|
|
|
- public void setPaymentStatus(PaymentFlagEnum paymentStatus) {
|
|
|
+ public void setPaymentStatus(PaymentStatusEnum paymentStatus) {
|
|
|
this.paymentStatus = paymentStatus;
|
|
|
}
|
|
|
|