|
@@ -16,7 +16,7 @@ public class StudentAttendanceViewDto {
|
|
|
private String groupType;
|
|
|
|
|
|
@ApiModelProperty(value = "乐团ID",required = false)
|
|
|
- private Long musicGroupId;
|
|
|
+ private String musicGroupId;
|
|
|
|
|
|
@ApiModelProperty(value = "科目ID",required = false)
|
|
|
private Long subjectId;
|
|
@@ -88,11 +88,11 @@ public class StudentAttendanceViewDto {
|
|
|
this.status = status;
|
|
|
}
|
|
|
|
|
|
- public Long getMusicGroupId() {
|
|
|
+ public String getMusicGroupId() {
|
|
|
return musicGroupId;
|
|
|
}
|
|
|
|
|
|
- public void setMusicGroupId(Long musicGroupId) {
|
|
|
+ public void setMusicGroupId(String musicGroupId) {
|
|
|
this.musicGroupId = musicGroupId;
|
|
|
}
|
|
|
|