|
@@ -85,9 +85,12 @@ public class StudentRegistration {
|
|
|
@ApiModelProperty(value = "用户所在乐团状态)",required = false)
|
|
|
private ClassGroupStudentStatusEnum musicGroupStatus;
|
|
|
|
|
|
- @ApiModelProperty(value = "班级ids", required = true)
|
|
|
+ @ApiModelProperty(value = "班级id", required = true)
|
|
|
private Integer classGroupId;
|
|
|
|
|
|
+ @ApiModelProperty(value = "班级名称", required = true)
|
|
|
+ private String classGroupName;
|
|
|
+
|
|
|
@ApiModelProperty(value = "零时课程费用", required = true)
|
|
|
private BigDecimal temporaryCourseFee;
|
|
|
|
|
@@ -293,6 +296,14 @@ public class StudentRegistration {
|
|
|
this.subjectName = subjectName;
|
|
|
}
|
|
|
|
|
|
+ public String getClassGroupName() {
|
|
|
+ return classGroupName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setClassGroupName(String classGroupName) {
|
|
|
+ this.classGroupName = classGroupName;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return ToStringBuilder.reflectionToString(this);
|