显示数据添加修订设备位置相关属性
This commit is contained in:
parent
4a70087c55
commit
fdee0acd77
@ -0,0 +1,16 @@
|
|||||||
|
package club.joylink.rtss.vo.map.display;
|
||||||
|
|
||||||
|
import club.joylink.rtss.vo.map.graph.Point;
|
||||||
|
import lombok.Getter;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
import lombok.Setter;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
@Setter
|
||||||
|
@NoArgsConstructor
|
||||||
|
public class AmendPoints {
|
||||||
|
private String code;
|
||||||
|
private List<Point> points;
|
||||||
|
}
|
@ -18,4 +18,8 @@ public class DisplayVO {
|
|||||||
|
|
||||||
/** 可切换显示的车站 */
|
/** 可切换显示的车站 */
|
||||||
private List<String> switchStationCodeList;
|
private List<String> switchStationCodeList;
|
||||||
|
/**
|
||||||
|
* 修正设备绘图点位置
|
||||||
|
*/
|
||||||
|
private List<AmendPoints> amendPointsList;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user