|
@@ -16,6 +16,8 @@ public class CourseGroupTeacherCardDto {
|
|
|
|
|
|
private String name;
|
|
|
|
|
|
+ private Integer classGroupId;
|
|
|
+
|
|
|
private Integer subjectId;
|
|
|
|
|
|
private String subjectName;
|
|
@@ -34,6 +36,14 @@ public class CourseGroupTeacherCardDto {
|
|
|
|
|
|
private String studentNames;
|
|
|
|
|
|
+ public Integer getClassGroupId() {
|
|
|
+ return classGroupId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setClassGroupId(Integer classGroupId) {
|
|
|
+ this.classGroupId = classGroupId;
|
|
|
+ }
|
|
|
+
|
|
|
public GroupType getGroupType() {
|
|
|
return groupType;
|
|
|
}
|