@@ -148,7 +148,7 @@ public class WXCpUserUtil {
public static void updateUnable(String userId) throws WxErrorException {
WxCpUser wxUser = getById(userId);
if(wxUser != null) {
- wxUser.setEnable(0);
+ wxUser.setEnable(0); // 启用/禁用成员。1表示启用成员,0表示禁用成员
updateUser(wxUser);
}