package cn.com.basic.face.discern.query.item;
|
|
import java.util.Date;
|
|
|
public class AttendanceDetailQueryItem {
|
|
// 签到时间
|
private String time;
|
// 设备地点
|
private String deviceName;
|
//
|
private String attendanceType;
|
|
/**
|
* Get 签到时间
|
*/
|
public String getTime() {
|
return time;
|
}
|
|
/**
|
* Set 签到时间
|
*/
|
public void setTime(String time) {
|
this.time = time;
|
}
|
|
/**
|
* Get 设备地点
|
*/
|
public String getDeviceName() {
|
return deviceName;
|
}
|
|
/**
|
* Set 设备地点
|
*/
|
public void setDeviceName(String deviceName) {
|
this.deviceName = deviceName;
|
}
|
|
/**
|
* Get
|
*/
|
public String getAttendanceType() {
|
return attendanceType;
|
}
|
|
/**
|
* Set
|
*/
|
public void setAttendanceType(String attendanceType) {
|
this.attendanceType = attendanceType;
|
}
|
|
public String toString() {
|
return
|
",签到时间 =" + time + ",设备地点 =" + deviceName + ", =" + attendanceType
|
;
|
}
|
}
|