Add files via upload

This commit is contained in:
DXL
2020-08-27 12:26:26 +08:00
committed by GitHub
parent 25b72413ad
commit 5e6be17a36
14 changed files with 686 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
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;
}
}