xiangpei
2024-03-28 0f431b52e0936456bd165d9553761bfd8a5a0517
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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 +
                '}';
    }
}