package com.ruoyi.station.model;
|
|
import java.util.List;
|
|
public class AreaDoorModel {
|
private String id;
|
private String title;
|
private List<AreaDoorModel> children;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public List<AreaDoorModel> getChildren() {
|
return children;
|
}
|
|
public void setChildren(List<AreaDoorModel> children) {
|
this.children = children;
|
}
|
}
|