根据java命名规范重新命名字段

This commit is contained in:
Daniel Qian
2014-10-20 17:46:38 +08:00
parent 49721a979a
commit 5b18c1419c
62 changed files with 854 additions and 592 deletions

View File

@@ -38,7 +38,7 @@ wxService.setWxConfigStorage(config);
// 用户的openid在下面地址获得
// https://mp.weixin.qq.com/debug/cgi-bin/apiinfo?t=index&type=用户管理&form=获取关注者列表接口%20/user/get
String openid = ...;
WxCustomMessage message = WxCustomMessage.TEXT().toUser(openid).content("Hello World").build();
String openId = ...;
WxCustomMessage message = WxCustomMessage.TEXT().toUser(openId).content("Hello World").build();
wxService.customMessageSend(message);
```