|
@@ -10,6 +10,9 @@ public class ReturnFeeDto {
|
|
|
@ApiModelProperty(value = "课程组编号",required = false)
|
|
|
private Long vipGroupId;
|
|
|
|
|
|
+ @ApiModelProperty(value = "课程组编号",required = false)
|
|
|
+ private Long groupId;
|
|
|
+
|
|
|
@ApiModelProperty(value = "退费学员",required = false)
|
|
|
private Integer studentId;
|
|
|
|
|
@@ -21,6 +24,14 @@ public class ReturnFeeDto {
|
|
|
|
|
|
private GroupType groupType;
|
|
|
|
|
|
+ public Long getGroupId() {
|
|
|
+ return groupId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setGroupId(Long groupId) {
|
|
|
+ this.groupId = groupId;
|
|
|
+ }
|
|
|
+
|
|
|
public GroupType getGroupType() {
|
|
|
return groupType;
|
|
|
}
|