org.tinygroup.menucommand.config.MenuConfigs Maven / Gradle / Ivy
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