#
vincentlu
1 天以前 388cf4c7cb8f942332eb0ad8d3c3e1d92714b747
zy-acs-manager/src/main/java/com/zy/acs/manager/core/domain/PathDto.java
@@ -8,16 +8,24 @@
@Data
public class PathDto {
    private String codeData;
    private String code;
    private int[] coordinate;
    private Double direction;
    private boolean turn = false;
    public PathDto() {
    }
    public PathDto(String codeData, int[] coordinate) {
        this.codeData = codeData;
        this.coordinate = coordinate;
    public PathDto(String code, Double direction) {
        this.code = code;
        this.direction = direction;
    }
    public PathDto(String code, Double direction, boolean turn) {
        this.code = code;
        this.direction = direction;
        this.turn = turn;
    }
}