【地图客户端列表】
This commit is contained in:
parent
e19e4480bd
commit
f9b8d0f901
@ -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();
|
||||
|
@ -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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user