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

com.gitee.yongzhuzl.commonutil.util.wx.official.menu.ClickButton Maven / Gradle / Ivy

Go to download

commonutil是一个功能丰富的Java工具类库,通过封装静态方法,降低学习成本,提升工作效率。

There is a newer version: 4.4.6
Show newest version
package com.gitee.yongzhuzl.commonutil.util.wx.official.menu;

/**
 * description: click类型的点击型菜单
 * @author 朱正磊
 * @date 2020-01-10 18:31:26
 */
public class ClickButton extends Button {

    /**
     * 菜单类型:click
     */
    private String type;

    /**
     * 自定义关键字
     */
    private String key;

    public String getType() {
        return type;
    }
    public void setType(String type) {
        this.type = type;
    }

    public String getKey() {
        return key;
    }
    public void setKey(String key) {
        this.key = key;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy