cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package cn.ksource.web.controller.wechat.menu.domain;
/** 
 * 复杂按钮(父按钮) 
 *  
 * @author jiangxiaolei 
 */
public class ComplexButton extends Button {
    private Button[] sub_button;  
      
    public Button[] getSub_button() {  
        return sub_button;  
    }  
  
    public void setSub_button(Button[] sub_button) {  
        this.sub_button = sub_button;  
    }
}