File tree Expand file tree Collapse file tree 2 files changed +40
-0
lines changed
weixin-java-open/src/main/java/me/chanjar/weixin/open/bean Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ package me .chanjar .weixin .open .bean .ma ;
2
+
3
+ import com .google .gson .annotations .SerializedName ;
4
+ import lombok .Data ;
5
+
6
+ import java .util .List ;
7
+
8
+ /**
9
+ * @author zxfreedom
10
+ * @description
11
+ * @date 2019/12/30
12
+ */
13
+ @ Data
14
+ public class WxOpenMaPreviewInfo {
15
+
16
+ /**
17
+ * 录屏mediaid列表,可以通过提审素材上传接口获得
18
+ */
19
+ @ SerializedName ("video_id_list" )
20
+ private String [] videoIdList ;
21
+
22
+ /**
23
+ * 截屏mediaid列表,可以通过提审素材上传接口获得
24
+ */
25
+ @ SerializedName ("pic_id_list" )
26
+ private String [] picIdList ;
27
+ }
Original file line number Diff line number Diff line change 2
2
3
3
import com .google .gson .annotations .SerializedName ;
4
4
import lombok .Data ;
5
+ import me .chanjar .weixin .open .bean .ma .WxOpenMaPreviewInfo ;
5
6
import me .chanjar .weixin .open .bean .ma .WxOpenMaSubmitAudit ;
6
7
7
8
import java .io .Serializable ;
@@ -22,6 +23,18 @@ public class WxOpenMaSubmitAuditMessage implements Serializable {
22
23
@ SerializedName ("item_list" )
23
24
private List <WxOpenMaSubmitAudit > itemList ;
24
25
26
+ /**
27
+ * 预览信息(小程序页面截图和操作录屏)
28
+ */
29
+ @ SerializedName ("preview_info" )
30
+ private List <WxOpenMaPreviewInfo > previewInfo ;
31
+
32
+ /**
33
+ * 小程序版本说明和功能解释
34
+ */
35
+ @ SerializedName ("version_desc" )
36
+ private String versionDesc ;
37
+
25
38
/**
26
39
* 反馈内容,不超过200字
27
40
*/
You can’t perform that action at this time.
0 commit comments