64 lines
1.5 KiB
Java
64 lines
1.5 KiB
Java
package com.solution.system.domain;
|
|
|
|
/**
|
|
* 场景配置表
|
|
* 对应表 afsim_scenario
|
|
*/
|
|
public class AfsimScenario {
|
|
private Integer id;
|
|
private String name;
|
|
private String description;
|
|
private String scenarioPath;
|
|
private String communicationGraph; // 用于存储场景中的通讯关系
|
|
|
|
public Integer getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Integer id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getDescription() {
|
|
return description;
|
|
}
|
|
|
|
public void setDescription(String description) {
|
|
this.description = description;
|
|
}
|
|
|
|
public String getScenarioPath() {
|
|
return scenarioPath;
|
|
}
|
|
|
|
public void setScenarioPath(String scenarioPath) {
|
|
this.scenarioPath = scenarioPath;
|
|
}
|
|
|
|
public String getCommunicationGraph() {
|
|
return communicationGraph;
|
|
}
|
|
|
|
public void setCommunicationGraph(String communicationGraph) {
|
|
this.communicationGraph = communicationGraph;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "AfsimScenario{" +
|
|
"id=" + id +
|
|
", name='" + name + '\'' +
|
|
", description='" + description + '\'' +
|
|
", scenarioPath='" + scenarioPath + '\'' +
|
|
", communicationGraph='" + communicationGraph + '\'' +
|
|
'}';
|
|
}
|
|
} |