26-03-14-11:17:行为树-保存场景配置
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
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 + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user