All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.riversoft.weixin.mp.menu.bean.MenuInfo Maven / Gradle / Ivy

There is a newer version: 0.9.8
Show newest version
package com.riversoft.weixin.mp.menu.bean;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.ArrayList;
import java.util.List;

/**
 * 获取自定义菜单配置接口使用
 * 操蛋的微信,JSON的协议就不能统一一下?
 * @borball on 5/26/2016.
 */
public class MenuInfo {

    @JsonProperty("button")
    private List menus = new ArrayList<>();

    public List getMenus() {
        return menus;
    }

    public void setMenus(List menus) {
        this.menus = menus;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy