package com.mindskip.xzs.domain.vo;
|
|
import java.util.List;
|
|
public class VideoStudentDto {
|
private String roomName;
|
private List<Integer> stuIds;
|
|
public VideoStudentDto() {
|
}
|
|
public VideoStudentDto(String roomName, List<Integer> stuIds) {
|
this.roomName = roomName;
|
this.stuIds = stuIds;
|
}
|
|
public String getRoomName() {
|
return roomName;
|
}
|
|
public void setRoomName(String roomName) {
|
this.roomName = roomName;
|
}
|
|
public List<Integer> getStuIds() {
|
return stuIds;
|
}
|
|
public void setStuIds(List<Integer> stuIds) {
|
this.stuIds = stuIds;
|
}
|
|
@Override
|
public String toString() {
|
return "VideoStudentDto{" +
|
"roomName='" + roomName + '\'' +
|
", stuIds=" + stuIds +
|
'}';
|
}
|
}
|