#1077 修复开发平台删除类目接口中拼写错误的second参数

https://open.weixin.qq.com/cgi-bin/showdocument?action=dir_list&t=resource/res_list&verify=1&id=21528465979XX32V&token=&lang=zh_CN
This commit is contained in:
Patrickcai 2019-06-18 16:54:27 +08:00 committed by Binary Wang
parent 46f5916faa
commit 26eec2c52a

View File

@ -208,7 +208,7 @@ public class WxOpenFastMaServiceImpl extends WxMaServiceImpl implements WxOpenFa
public WxOpenResult deleteCategory (int first, int second) throws WxErrorException {
JsonObject params = new JsonObject ();
params.addProperty ("first", first);
params.addProperty ("Second", second);
params.addProperty ("second", second);
String response = post (OPEN_DELETE_CATEGORY, GSON.toJson (params));
return WxOpenGsonBuilder.create ().fromJson (response, WxOpenResult.class);
}