Blame view

src/com/fh/entity/weixin/ViewButton.java 435 Bytes
ad5081d3   孙向锦   初始化项目
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  package com.fh.entity.weixin;
  
  
  /** view类型的菜单对象
   * @author FH
   * Q: 3 13596 79 0
   * 2016.11.1
   */
  public class ViewButton extends Button{
  	private String type;		//菜单类型
  	private String url;			//view路径值
  	
  	public String getType() {
  		return type;
  	}
  	public void setType(String type) {
  		this.type = type;
  	}
  	public String getUrl() {
  		return url;
  	}
  	public void setUrl(String url) {
  		this.url = url;
  	}
  }