package com.ruoyi.station.model; import java.util.List; public class AreaDoorModel { private String id; private String title; private List 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 getChildren() { return children; } public void setChildren(List children) { this.children = children; } }