`
收藏列表
标题 标签 来源
mybatis 自身关联 映射 mybatis mybatis 自身关联 映射

public class Module {

	private int id;
	private String key;
	private String name;
	private Module parentModule;
	private List<Module> childrenModules;
	private String url;
	private int sort;
	private String show;
	private String del;

	public int getId() {
		return id;
	}

	public void setId(int id) {
		this.id = id;
	}

	public String getKey() {
		return key;
	}

	public void setKey(String key) {
		this.key = key;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public Module getParentModule() {
		return parentModule;
	}

	public void setParentModule(Module parentModule) {
		this.parentModule = parentModule;
	}

	public String getUrl() {
		return url;
	}

	public void setUrl(String url) {
		this.url = url;
	}

	public int getSort() {
		return sort;
	}

	public void setSort(int sort) {
		this.sort = sort;
	}

	public String getShow() {
		return show;
	}

	public void setShow(String show) {
		this.show = show;
	}

	public String getDel() {
		return del;
	}

	public void setDel(String del) {
		this.del = del;
	}

	public List<Module> getChildrenModules() {
		return childrenModules;
	}

	public void setChildrenModules(List<Module> childrenModules) {
		this.childrenModules = childrenModules;
	}
}

Global site tag (gtag.js) - Google Analytics