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
26
27
28
29
30
31
| package com.zy.acs.manager.core.domain;
|
| import lombok.Data;
|
| /**
| * Created by vincent on 2023/6/19
| */
| @Data
| public class PathDto {
|
| private String code;
|
| private Double direction;
|
| private boolean turn = false;
|
| public PathDto() {
| }
|
| 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;
| }
|
| }
|
|