Blame view

src/com/fh/entity/weixin/ComplexButton.java 395 Bytes
ad5081d3   孙向锦   初始化项目
1
2
  package com.fh.entity.weixin;
  
ad5081d3   孙向锦   初始化项目
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  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;
  	}
  }