mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-05-03 20:27:46 +08:00
🎨 【小程序】代码审核状态查询接口返回增加三个参数
This commit is contained in:
parent
eef62676aa
commit
0bc0b38a77
@ -69,7 +69,7 @@ public interface WxMaCodeService {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询最新一次提交的审核状态(仅供第三方代小程序调用).
|
* 查询最新一次提交的审核状态(仅供第三方代小程序调用).
|
||||||
*
|
* 文档:<a href="https://developers.weixin.qq.com/doc/oplatform/openApi/OpenApiDoc/miniprogram-management/code-management/getLatestAuditStatus.html">文档地址</a>
|
||||||
* @return 审核状态
|
* @return 审核状态
|
||||||
* @throws WxErrorException 查询失败时返回,具体错误码请看此接口的注释文档
|
* @throws WxErrorException 查询失败时返回,具体错误码请看此接口的注释文档
|
||||||
*/
|
*/
|
||||||
|
@ -41,6 +41,24 @@ public class WxMaCodeAuditStatus implements Serializable {
|
|||||||
@SerializedName(value = "screenshot")
|
@SerializedName(value = "screenshot")
|
||||||
private String screenShot;
|
private String screenShot;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 审核版本
|
||||||
|
*/
|
||||||
|
@SerializedName(value = "user_version")
|
||||||
|
private String userVersion;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 版本描述
|
||||||
|
*/
|
||||||
|
@SerializedName(value = "user_desc")
|
||||||
|
private String userDesc;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 时间戳,提交审核的时间
|
||||||
|
*/
|
||||||
|
@SerializedName(value = "submit_audit_time")
|
||||||
|
private String submitAuditTime;
|
||||||
|
|
||||||
public static WxMaCodeAuditStatus fromJson(String json) {
|
public static WxMaCodeAuditStatus fromJson(String json) {
|
||||||
return WxMaGsonBuilder.create().fromJson(json, WxMaCodeAuditStatus.class);
|
return WxMaGsonBuilder.create().fromJson(json, WxMaCodeAuditStatus.class);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user