1
0
mirror of synced 2025-12-23 02:18:07 +08:00

issue #1 添加分组管理接口-创建分组接口

This commit is contained in:
Daniel Qian
2014-08-25 17:19:27 +08:00
parent 5ddce62556
commit f57a0e4c87
17 changed files with 204 additions and 52 deletions

View File

@@ -14,7 +14,7 @@ import chanjarster.weixin.util.json.WxGsonBuilder;
*/
public class WxMenu {
protected List<WxMenuButton> button = new ArrayList<WxMenuButton>();
private List<WxMenuButton> button = new ArrayList<WxMenuButton>();
public List<WxMenuButton> getButton() {
return button;
@@ -38,12 +38,12 @@ public class WxMenu {
public static class WxMenuButton {
protected String type;
protected String name;
protected String key;
protected String url;
private String type;
private String name;
private String key;
private String url;
protected List<WxMenuButton> sub_button = new ArrayList<WxMenuButton>();
private List<WxMenuButton> sub_button = new ArrayList<WxMenuButton>();
public String getType() {
return type;