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.
		
		
		
		
			
				
					
					
						
							19 lines
						
					
					
						
							359 B
						
					
					
				
			
		
		
	
	
							19 lines
						
					
					
						
							359 B
						
					
					
				| 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;
 | |
| 
 | |
| }
 | |
| 
 |