WxMenuKey.java
716 字节
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package org.theyeasy.weixin.model;
import org.apache.commons.lang3.builder.ToStringBuilder;
/**
* 菜单的dto对象
* @author Binary Wang
*
*/
public class WxMenuKey {
private String type;
private String content;
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
public WxMenuKey() {
}
public WxMenuKey(String type, String content) {
this.type = type;
this.content = content;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
}