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.
20 lines
359 B
20 lines
359 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.List;
|
||
|
|
||
|
@Getter
|
||
|
@Setter
|
||
|
@NoArgsConstructor
|
||
|
@ToString
|
||
|
public class WxMenu {
|
||
|
private List<WxMenuButton> button ;
|
||
|
private WxMenuRule matchrule;
|
||
|
private String menuid;
|
||
|
|
||
|
}
|