1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
package com.fh.entity.weixin; /** 一级菜单 * @author FH * Q: 3 13596 79 0 * 2016.11.1 */ public class ComplexButton { private String name; //菜单名称 private Button[] sub_button; //子级菜单 public String getName() { return name; } public void setName(String name) { this.name = name; } public Button[] getSub_button() { return sub_button; } public void setSub_button(Button[] sub_button) { this.sub_button = sub_button; } }