com.gitee.yongzhuzl.commonutil.util.wx.official.menu.ClickButton Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commonutil Show documentation
Show all versions of commonutil Show documentation
commonutil是一个功能丰富的Java工具类库,通过封装静态方法,降低学习成本,提升工作效率。
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;
}
}