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

org.tinygroup.menucommand.config.MenuConfigs Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package org.tinygroup.menucommand.config;

import java.util.List;


import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;

/**
 * 命令菜单定义
 * @author yancheng11334
 *
 */
@XStreamAlias("menu-configs")
public class MenuConfigs {

	/**
	 * 菜单结构组
	 */
	@XStreamImplicit
	private List menuConfigList;
	
	/**
	 * 系统命令组
	 */
	@XStreamImplicit
	private List systemCommandList;


	public List getMenuConfigList() {
		return menuConfigList;
	}

	public void setMenuConfigList(List menuConfigList) {
		this.menuConfigList = menuConfigList;
	}

	public List getSystemCommandList() {
		return systemCommandList;
	}

	public void setSystemCommandList(List systemCommandList) {
		this.systemCommandList = systemCommandList;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy