【地图客户端列表】

This commit is contained in:
weizhihong 2023-04-26 16:07:30 +08:00
parent e19e4480bd
commit f9b8d0f901
2 changed files with 43 additions and 0 deletions

View File

@ -249,6 +249,11 @@ public class MapGraphDataNewVO {
*/
private Map<Simulation.Type, List<ConversationGroupVO>> conversationGroupMap = new HashMap<>();
/**
* 客户端列表
*/
private List<MapClientVO> mapClientVOList = new ArrayList<>();
public MapGraphDataNewVO() {
this.bigScreenConfig = new BigScreenConfig();
this.generateConfig = new MapCiGenerateConfig();

View File

@ -0,0 +1,38 @@
package club.joylink.rtss.vo.map.graph;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import javax.validation.constraints.NotNull;
/**
* 地图客户端配置信息
*/
@Getter
@Setter
@NoArgsConstructor
public class MapClientVO {
/**
* 客户端ID
*/
@NotNull
private String id;
/**
* 名称
*/
private String name;
/**
* 客户端类型
*/
@NotNull
private String type;
/**
* 客户端关联设备编码
*/
private String deviceCode;
}