Junjie
1 天以前 1a3f0ed6b7f6d4112069a3c8679e7192365d5eef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.zy.core.utils.station.model;
 
public final class CircleTargetCandidate {
    private final Integer stationId;
    private final Integer pathLength;
    private final Integer offset;
 
    public CircleTargetCandidate(Integer stationId, Integer pathLength, Integer offset) {
        this.stationId = stationId;
        this.pathLength = pathLength == null ? 0 : pathLength;
        this.offset = offset == null ? 0 : offset;
    }
 
    public Integer getStationId() {
        return stationId;
    }
 
    public Integer getPathLength() {
        return pathLength;
    }
 
    public Integer getOffset() {
        return offset;
    }
}