mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2026-03-10 00:13:40 +08:00
#1011 开放平台小程序审核结果增加截图示例的字段
This commit is contained in:
@@ -18,18 +18,24 @@ import java.io.Serializable;
|
||||
public class WxMaCodeAuditStatus implements Serializable {
|
||||
private static final long serialVersionUID = 4655119308692217268L;
|
||||
/**
|
||||
* 审核 ID
|
||||
* 审核 ID.
|
||||
*/
|
||||
@SerializedName(value = "auditId", alternate = {"auditid"})
|
||||
private Long auditId;
|
||||
/**
|
||||
* 审核状态,其中0为审核成功,1为审核失败,2为审核中
|
||||
* 审核状态.
|
||||
* 其中0为审核成功,1为审核失败,2为审核中
|
||||
*/
|
||||
private Integer status;
|
||||
/**
|
||||
* 当status=1,审核被拒绝时,返回的拒绝原因
|
||||
* 当status=1,审核被拒绝时,返回的拒绝原因.
|
||||
*/
|
||||
private String reason;
|
||||
/**
|
||||
* 当status=1,审核被拒绝时,会返回审核失败的小程序截图示例。 xxx丨yyy丨zzz是media_id可通过获取永久素材接口 拉取截图内容).
|
||||
*/
|
||||
@SerializedName(value = "screenshot")
|
||||
private String screenShot;
|
||||
|
||||
public static WxMaCodeAuditStatus fromJson(String json) {
|
||||
return WxMaGsonBuilder.create().fromJson(json, WxMaCodeAuditStatus.class);
|
||||
|
||||
Reference in New Issue
Block a user