All Downloads are FREE. Search and download functionalities are using the official Maven repository.

group.rober.base.pilot.model.StartNode Maven / Gradle / Ivy

The newest version!
package group.rober.base.pilot.model;

import java.io.Serializable;
import java.util.List;
import java.util.Map;

/**
 * 系统开始节点(有且仅有一个)
 */
public class StartNode extends BaseNode implements Serializable {
    private Map properties;
    private List children;

    public Map getProperties() {
        return properties;
    }

    public void setProperties(Map properties) {
        this.properties = properties;
    }

    public List getChildren() {
        return children;
    }

    public void setChildren(List children) {
        this.children = children;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy