zsh_root
2025-01-06 7857a444de69124e9f7fb45f98b0ae818b107f23
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package Anchor;
 
public class Anchor {
    String anchorId;//信标ID
    String distance;//测距距离
 
    public String getAnchorId() {
        return anchorId;
    }
 
    public String getDistance() {
        return distance;
    }
 
    public void setAnchorId(String anchorId) {
        this.anchorId = anchorId;
    }
 
    public void setDistance(String distance) {
        this.distance = distance;
    }
}