|
@@ -2,6 +2,8 @@ package com.ym.mec.biz.dal.dto;
|
|
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
+
|
|
|
public class SurplusCourseFeeDto {
|
|
|
|
|
|
@ApiModelProperty(value = "学员编号",required = true)
|
|
@@ -13,15 +15,46 @@ public class SurplusCourseFeeDto {
|
|
|
@ApiModelProperty(value = "课程类型 VIP/PRACTICE",required = true)
|
|
|
private String groupType;
|
|
|
|
|
|
- private Integer activityUserMapperId;
|
|
|
+ @ApiModelProperty(value = "可退课程费用",required = true)
|
|
|
+ private BigDecimal actualPrice;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "可退未排课费用",required = true)
|
|
|
+ private BigDecimal coursePrice;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "课程组编号",required = true)
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ private String activityUserMapperId;
|
|
|
+
|
|
|
+ public BigDecimal getActualPrice() {
|
|
|
+ return actualPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setActualPrice(BigDecimal actualPrice) {
|
|
|
+ this.actualPrice = actualPrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public BigDecimal getCoursePrice() {
|
|
|
+ return coursePrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCoursePrice(BigDecimal coursePrice) {
|
|
|
+ this.coursePrice = coursePrice;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getName() {
|
|
|
+ return name;
|
|
|
+ }
|
|
|
|
|
|
- private String ignoreGroupId;
|
|
|
+ public void setName(String name) {
|
|
|
+ this.name = name;
|
|
|
+ }
|
|
|
|
|
|
- public Integer getActivityUserMapperId() {
|
|
|
+ public String getActivityUserMapperId() {
|
|
|
return activityUserMapperId;
|
|
|
}
|
|
|
|
|
|
- public void setActivityUserMapperId(Integer activityUserMapperId) {
|
|
|
+ public void setActivityUserMapperId(String activityUserMapperId) {
|
|
|
this.activityUserMapperId = activityUserMapperId;
|
|
|
}
|
|
|
|
|
@@ -48,12 +81,4 @@ public class SurplusCourseFeeDto {
|
|
|
public void setGroupType(String groupType) {
|
|
|
this.groupType = groupType;
|
|
|
}
|
|
|
-
|
|
|
- public String getIgnoreGroupId() {
|
|
|
- return ignoreGroupId;
|
|
|
- }
|
|
|
-
|
|
|
- public void setIgnoreGroupId(String ignoreGroupId) {
|
|
|
- this.ignoreGroupId = ignoreGroupId;
|
|
|
- }
|
|
|
}
|