Blame view

src/com/fh/entity/weixin/CommonButton.java 351 Bytes
ad5081d3   孙向锦   初始化项目
1
2
  package com.fh.entity.weixin;
  
ad5081d3   孙向锦   初始化项目
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  public class CommonButton extends Button{
  	
  	private String type;		//菜单类型
  	private String key;			//key值
  	
  	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;
  	}
  }