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

cn.woodwhales.common.example.model.business.tree.TreeToolTempMenu Maven / Gradle / Ivy

There is a newer version: 3.8.3
Show newest version
package cn.woodwhales.common.example.model.business.tree;

/**
 * @author woodwhales on 2021-07-25 12:26
 */
public class TreeToolTempMenu {
    private Integer id;
    private Integer parentId;
    private String cityName;
    private Integer sort;

    public TreeToolTempMenu(Integer id, Integer parentId, String cityName, Integer sort) {
        this.id = id;
        this.parentId = parentId;
        this.cityName = cityName;
        this.sort = sort;
    }

    public Integer getId() {
        return id;
    }

    public Integer getParentId() {
        return parentId;
    }

    public String getCityName() {
        return cityName;
    }

    public Integer getSort() {
        return sort;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy