|
@@ -2,6 +2,7 @@ package com.ym.mec.biz.dal.dto;
|
|
|
|
|
|
import com.ym.mec.biz.dal.entity.SubjectChange;
|
|
|
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;
|
|
@@ -9,6 +10,9 @@ import java.util.Date;
|
|
|
|
|
|
public class MusicGroupStudentsDto{
|
|
|
|
|
|
+ @ApiModelProperty(value = "学生乐团注册编号",required = false)
|
|
|
+ private Integer studentRegistrationId;
|
|
|
+
|
|
|
@ApiModelProperty(value = "学生编号",required = false)
|
|
|
private Integer userId;
|
|
|
|
|
@@ -57,7 +61,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;
|
|
@@ -83,7 +87,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;
|
|
@@ -96,6 +100,14 @@ public class MusicGroupStudentsDto{
|
|
|
@ApiModelProperty(value = "备注信息",required = false)
|
|
|
private String remark;
|
|
|
|
|
|
+ public Integer getStudentRegistrationId() {
|
|
|
+ return studentRegistrationId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentRegistrationId(Integer studentRegistrationId) {
|
|
|
+ this.studentRegistrationId = studentRegistrationId;
|
|
|
+ }
|
|
|
+
|
|
|
@ApiModelProperty(value = "声部更换详情",required = false)
|
|
|
private SubjectChange subjectChange;
|
|
|
|
|
@@ -267,11 +279,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;
|
|
|
}
|
|
|
|