|
@@ -82,10 +82,10 @@ public class BeaconMateImpl implements BeaconMate {
|
|
|
//初步过滤只有b5,c5的数据
|
|
//初步过滤只有b5,c5的数据
|
|
|
if(beaconStr.endsWith("b5") || beaconStr.endsWith("c5")){
|
|
if(beaconStr.endsWith("b5") || beaconStr.endsWith("c5")){
|
|
|
boolean flag = Boolean.FALSE;
|
|
boolean flag = Boolean.FALSE;
|
|
|
|
|
+ // 这里需要处理信标字符串
|
|
|
|
|
+ beaconStr = checkBeacon(beaconStr);
|
|
|
// 循环检查实验室的信标比对上报的信标,将配对好的信标重新设置默认时间
|
|
// 循环检查实验室的信标比对上报的信标,将配对好的信标重新设置默认时间
|
|
|
for(int x=0;x<beaconList.size();x++){
|
|
for(int x=0;x<beaconList.size();x++){
|
|
|
- // 这里需要处理信标字符串
|
|
|
|
|
- beaconStr = checkBeacon(beaconStr);
|
|
|
|
|
if(beaconList.get(x).get("beaconTag").equals(beaconStr)){
|
|
if(beaconList.get(x).get("beaconTag").equals(beaconStr)){
|
|
|
log.info("{} 4.=====================================》上报的信标处理后返回信标编码:"+beaconStr+"; {} 实验室下匹配后的信标:"+beaconList.get(x).get("beaconTag"),uuid,subId);
|
|
log.info("{} 4.=====================================》上报的信标处理后返回信标编码:"+beaconStr+"; {} 实验室下匹配后的信标:"+beaconList.get(x).get("beaconTag"),uuid,subId);
|
|
|
flag=Boolean.TRUE;
|
|
flag=Boolean.TRUE;
|