mirror of
https://github.com/RfidResearchGroup/ChameleonBLEAPI.git
synced 2026-05-12 11:20:47 -07:00
35 lines
634 B
Java
35 lines
634 B
Java
package com.proxgrind.chameleon.javabean;
|
|||
|
|
|
||
|
|
public class DetectionLog {
|
||
|
|
// 类型
|
||
|
|
private int type;
|
||
|
|
// 数据
|
||
|
|
private byte[] data;
|
||
|
|
// 时间戳
|
||
|
|
private int timestamp;
|
||
|
|
|
||
|
|
public int getType() {
|
||
|
|
return type;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setType(int type) {
|
||
|
|
this.type = type;
|
||
|
|
}
|
||
|
|
|
||
|
|
public byte[] getData() {
|
||
|
|
return data;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setData(byte[] data) {
|
||
|
|
this.data = data;
|
||
|
|
}
|
||
|
|
|
||
|
|
public int getTimestamp() {
|
||
|
|
return timestamp;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setTimestamp(int timestamp) {
|
||
|
|
this.timestamp = timestamp;
|
||
|
|
}
|
||
|
|
}
|