🐛 #1185 修正第三方小程序部分请求和返回对象

This commit is contained in:
S
2019-08-29 13:59:46 +08:00
committed by Binary Wang
parent b0ff3f0e93
commit e463c78437
4 changed files with 42 additions and 2 deletions

View File

@@ -416,8 +416,8 @@ public class WxOpenComponentServiceImpl implements WxOpenComponentService {
public List<WxOpenMaCodeTemplate> getTemplateList() throws WxErrorException {
String responseContent = get(GET_TEMPLATE_LIST_URL, "access_token");
JsonObject response = JSON_PARSER.parse(StringUtils.defaultString(responseContent, "{}")).getAsJsonObject();
boolean hasDraftList = response.has("template_list");
if (hasDraftList) {
boolean hasTemplateList = response.has("template_list");
if (hasTemplateList) {
return WxOpenGsonBuilder.create().fromJson(response.getAsJsonArray("template_list"),
new TypeToken<List<WxOpenMaCodeTemplate>>() {
}.getType());

View File

@@ -2,6 +2,7 @@ package me.chanjar.weixin.open.bean.ma;
import com.google.gson.annotations.SerializedName;
import lombok.Data;
import me.chanjar.weixin.open.util.json.WxOpenGsonBuilder;
import org.apache.commons.lang3.StringUtils;
import java.io.Serializable;
@@ -14,6 +15,8 @@ import java.util.Map;
* 微信小程序三方平台代上传代码提交额外信息对象
* <p>
* 如果代码中已经有配置则配置的合并规则为除了pages和tabBar.list直接覆盖原配置其他都为插入或同级覆盖。
* extjson 详细说明
* https://developers.weixin.qq.com/miniprogram/dev/devtools/ext.html#%E5%B0%8F%E7%A8%8B%E5%BA%8F%E6%A8%A1%E6%9D%BF%E5%BC%80%E5%8F%91
* </p>
*
* @author yqx
@@ -31,6 +34,16 @@ public class WxMaOpenCommitExtInfo implements Serializable {
*/
private String extAppid;
/**
* 配置 ext.json 是否生效
*/
private Boolean extEnable = Boolean.TRUE;
/**
* 是否直接提交到待审核列表
*/
private Boolean directCommit = Boolean.FALSE;
@SerializedName("ext")
private Map<String, Object> extMap;
@@ -99,4 +112,8 @@ public class WxMaOpenCommitExtInfo implements Serializable {
public static WxMaOpenCommitExtInfo INSTANCE() {
return new WxMaOpenCommitExtInfo();
}
public String toJson() {
return WxOpenGsonBuilder.create().toJson(this);
}
}

View File

@@ -18,4 +18,12 @@ public class WxMaOpenTab implements Serializable {
private String text;
private String iconPath;
private String selectedIconPath;
public WxMaOpenTab(String pagePath, String text) {
this.pagePath = pagePath;
this.text = text;
}
}

View File

@@ -16,6 +16,21 @@ import java.util.List;
@Data
public class WxOpenMaSubmitAuditMessage implements Serializable {
/**
* 提交审核项的一个列表至少填写1项至多填写5项
*/
@SerializedName("item_list")
private List<WxOpenMaSubmitAudit> itemList;
/**
* 反馈内容不超过200字
*/
@SerializedName("feedback_info")
private String feedbackInfo;
/**
* 图片media_id列表中间用“丨”分割xx丨yy丨zz不超过5张图片, 其中 media_id 可以通过新增临时素材接口上传而得到
*/
@SerializedName("feedback_stuff")
private String feedbackStuff;
}