Merge remote-tracking branch 'origin/SelfStation' into SelfStation
# Conflicts: # jeecg-boot-base-core/src/main/java/org/jeecg/common/email/EmailServiceManager.java
This commit is contained in:
commit
277485ddda
|
@ -126,4 +126,8 @@ public class SymbolConstant {
|
|||
public static final String LINE = "\n";
|
||||
|
||||
public static final String AT = "@";
|
||||
|
||||
public static final String VERTICAL = "|";
|
||||
|
||||
public static final char VERTICAL_CHAR = '|';
|
||||
}
|
|
@ -98,6 +98,17 @@ public class EnergySpectrumStruct {
|
|||
*/
|
||||
public double acquisition_live_time;
|
||||
|
||||
/*************************** GPS Block ***********************/
|
||||
/*
|
||||
* 坐标: 经度值
|
||||
* */
|
||||
public double longitude;
|
||||
|
||||
/*
|
||||
* 坐标: 纬度值
|
||||
* */
|
||||
public double latitude;
|
||||
|
||||
/************************* Collection Block ******************/
|
||||
|
||||
/**
|
||||
|
|
|
@ -222,15 +222,15 @@ public class SelfStationUtil extends AbstractLogOrReport {
|
|||
Long count = hCounts.get(index.intValue());
|
||||
if (count > 0){
|
||||
HistogramData his = new HistogramData();
|
||||
his.setG(i);
|
||||
his.setB(j);
|
||||
his.setG(j);
|
||||
his.setB(i);
|
||||
his.setC(count);
|
||||
histogramDataList.add(his);
|
||||
histogramDataDList.add(his);
|
||||
}else {
|
||||
HistogramData his = new HistogramData();
|
||||
his.setG(i);
|
||||
his.setB(j);
|
||||
his.setG(j);
|
||||
his.setB(i);
|
||||
his.setC(count);
|
||||
histogramDataDList.add(his);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user