hz-zhhq-app-service/greenH5modul/.svn/pristine/5f/5f8117fb1e349d614d45547c3b7...

103 lines
1.7 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.jysoft.weChat.vo;
import java.util.List;
public class WechatMenuVo {
// 菜单标题
private String name;
// 菜单的响应动作类型view表示网页类型click表示点击类型miniprogram表示小程序类型
private String type;
private String key;
// 一级菜单数组个数应为1~3个
private List<WechatMenuVo> button;
// 二级菜单数组个数应为1~5个
private List<WechatMenuVo> sub_button;
private String url;
private String media_id;
// 小程序的appid仅认证公众号可配置
private String appid;
// 小程序的页面路径
private String pagepath;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
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;
}
public List<WechatMenuVo> getButton() {
return button;
}
public void setButton(List<WechatMenuVo> button) {
this.button = button;
}
public List<WechatMenuVo> getSub_button() {
return sub_button;
}
public void setSub_button(List<WechatMenuVo> sub_button) {
this.sub_button = sub_button;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public String getMedia_id() {
return media_id;
}
public void setMedia_id(String media_id) {
this.media_id = media_id;
}
public String getAppid() {
return appid;
}
public void setAppid(String appid) {
this.appid = appid;
}
public String getPagepath() {
return pagepath;
}
public void setPagepath(String pagepath) {
this.pagepath = pagepath;
}
}