根据场景id显示所有行为树

This commit is contained in:
MHW
2026-04-13 17:02:08 +08:00
parent 79364b951d
commit e57f0f19d5
7 changed files with 67 additions and 0 deletions

View File

@@ -49,6 +49,17 @@ public class Behaviortree extends BaseEntity
@Excel(name = "平台ID")
private Integer platformId;
@Excel(name = "场景ID")
private Integer scenarioId;
public Integer getScenarioId() {
return scenarioId;
}
public void setScenarioId(Integer scenarioId) {
this.scenarioId = scenarioId;
}
public Integer getPlatformId() {
return platformId;
}