Skip to content

Commit

Permalink
#198 MenuAPI 创建个性化菜单返回menuid
Browse files Browse the repository at this point in the history
  • Loading branch information
liyi committed Apr 8, 2019
1 parent c642552 commit 9d8cc84
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ weixin-popular 已支持的微信平台
<dependency>
<groupId>com.github.liyiorg</groupId>
<artifactId>weixin-popular</artifactId>
<version>2.8.26</version>
<version>2.8.27-SNAPSHOT</version>
</dependency>
```
* [升级注意事项](https://github.com/liyiorg/weixin-popular/wiki/jar_update)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/weixin/popular/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

public interface Version {

String VERSION = "2.8.26";
String VERSION = "2.8.27";
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package weixin.popular.bean.menu;

import weixin.popular.bean.BaseResult;

public class MenuAddconditionalResult extends BaseResult {

private String menuid;

public String getMenuid() {
return menuid;
}

public void setMenuid(String menuid) {
this.menuid = menuid;
}

}

0 comments on commit 9d8cc84

Please sign in to comment.