1
0
mirror of synced 2025-12-24 02:57:55 +08:00

issue #2 设置用户备注名接口

This commit is contained in:
Daniel Qian
2014-08-26 12:13:28 +08:00
parent 5ea560f6b4
commit e03bb0dfb8
5 changed files with 65 additions and 7 deletions

View File

@@ -232,7 +232,19 @@ public interface WxService {
* @param to_groupid 移动到的分组id
* @throws WxErrorException
*/
public void groupMoveUser(String openid, long to_groupid) throws WxErrorException;
public void userUpdateGroup(String openid, long to_groupid) throws WxErrorException;
/**
* <pre>
* 设置用户备注名接口
* 详情请见: http://mp.weixin.qq.com/wiki/index.php?title=设置用户备注名接口
*
* </pre>
* @param openid 用户openid
* @param remark 备注名
* @throws WxErrorException
*/
public void userUpdateRemark(String openid, String remark) throws WxErrorException;
/**
* 注入 {@link WxConfigStorage} 的实现