PlaceAttendance.java
822 Bytes
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
package com.sincere.haikang.bean;
import java.io.Serializable;
/**
* 场地和设备关联
*/
public class PlaceAttendance implements Serializable {
private String KaoQinAttendance;//设备id
private String TypeTwo;//0:活动场地,1:寝室
public String getKaoQinAttendance() {
return KaoQinAttendance;
}
public void setKaoQinAttendance(String kaoQinAttendance) {
KaoQinAttendance = kaoQinAttendance;
}
public String getTypeTwo() {
return TypeTwo;
}
public void setTypeTwo(String typeTwo) {
TypeTwo = typeTwo;
}
@Override
public String toString() {
return "PlaceAttendance{" +
"KaoQinAttendance='" + KaoQinAttendance + '\'' +
", TypeTwo='" + TypeTwo + '\'' +
'}';
}
}