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;
|
}
|
}
|