com.gitee.yongzhuzl.commonutil.util.wx.official.menu.ParentButton Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commonutil Show documentation
Show all versions of commonutil Show documentation
commonutil是一个功能丰富的Java工具类库,通过封装静态方法,降低学习成本,提升工作效率。
package com.gitee.yongzhuzl.commonutil.util.wx.official.menu;
/**
* description: 父菜单
* @author 朱正磊
* @date 2020-01-10 18:41:48
*/
public class ParentButton extends Button {
/**
* 子菜单数组
*/
private Button[] sub_button;
public Button[] getSub_button() {
return sub_button;
}
public void setSub_button(Button[] sub_button) {
this.sub_button = sub_button;
}
}