You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
509 B
23 lines
509 B
2 years ago
|
package com.ynxbd.wx.wxfactory.menu.bean;
|
||
|
|
||
|
import lombok.Getter;
|
||
|
import lombok.NoArgsConstructor;
|
||
|
import lombok.Setter;
|
||
|
import lombok.ToString;
|
||
|
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.List;
|
||
|
|
||
|
@Getter
|
||
|
@Setter
|
||
|
@NoArgsConstructor
|
||
|
@ToString
|
||
|
public class WxMenuButton {
|
||
|
private String type;
|
||
|
private String name;
|
||
|
private String key;
|
||
|
private String url;
|
||
|
private String appid;
|
||
|
private String pagepath;
|
||
|
private List<WxMenuButton> sub_button = new ArrayList<>();
|
||
|
}
|