Skip to content

Commit

Permalink
🎨 #1347 开放平台模块更新代开发小程序提交审核参数
Browse files Browse the repository at this point in the history
  • Loading branch information
zxfreedom authored and binarywang committed Dec 30, 2019
1 parent 662fd1e commit aad2e5b
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package me.chanjar.weixin.open.bean.ma;

import com.google.gson.annotations.SerializedName;
import lombok.Data;

import java.util.List;

/**
* @author zxfreedom
* @description
* @date 2019/12/30
*/
@Data
public class WxOpenMaPreviewInfo {

/**
* 录屏mediaid列表,可以通过提审素材上传接口获得
*/
@SerializedName("video_id_list")
private String[] videoIdList;

/**
* 截屏mediaid列表,可以通过提审素材上传接口获得
*/
@SerializedName("pic_id_list")
private String[] picIdList;
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import com.google.gson.annotations.SerializedName;
import lombok.Data;
import me.chanjar.weixin.open.bean.ma.WxOpenMaPreviewInfo;
import me.chanjar.weixin.open.bean.ma.WxOpenMaSubmitAudit;

import java.io.Serializable;
Expand All @@ -22,6 +23,18 @@ public class WxOpenMaSubmitAuditMessage implements Serializable {
@SerializedName("item_list")
private List<WxOpenMaSubmitAudit> itemList;

/**
* 预览信息(小程序页面截图和操作录屏)
*/
@SerializedName("preview_info")
private List<WxOpenMaPreviewInfo> previewInfo;

/**
* 小程序版本说明和功能解释
*/
@SerializedName("version_desc")
private String versionDesc;

/**
* 反馈内容,不超过200字
*/
Expand Down

0 comments on commit aad2e5b

Please sign in to comment.