UserAndPermission.java
1.07 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.example.dahua.bean;
import java.io.Serializable;
import java.util.List;
public class UserAndPermission implements Serializable {
private List<String> deviceIds;
private int userType;
private String userIds;
private List<WeekDay> weekDays;
private String schoolId;
public List<String> getDeviceIds() {
return deviceIds;
}
public void setDeviceIds(List<String> deviceIds) {
this.deviceIds = deviceIds;
}
public int getUserType() {
return userType;
}
public void setUserType(int userType) {
this.userType = userType;
}
public String getUserIds() {
return userIds;
}
public void setUserIds(String userIds) {
this.userIds = userIds;
}
public List<WeekDay> getWeekDays() {
return weekDays;
}
public void setWeekDays(List<WeekDay> weekDays) {
this.weekDays = weekDays;
}
public String getSchoolId() {
return schoolId;
}
public void setSchoolId(String schoolId) {
this.schoolId = schoolId;
}
}