File tree 1 file changed +48
-0
lines changed
weixin-java-miniapp/src/main/java/cn/binarywang/wx/miniapp/bean/vod
1 file changed +48
-0
lines changed Original file line number Diff line number Diff line change 16
16
public class WxMaVodListMediaRequest implements Serializable {
17
17
private static final long serialVersionUID = 7495157056049312108L ;
18
18
19
+ /**
20
+ * <pre>
21
+ * 必填:否
22
+ * 说明:根据剧目id获取剧集信息
23
+ * </pre>
24
+ */
19
25
@ SerializedName ("drama_id" )
20
26
private Integer dramaId ;
27
+
28
+ /**
29
+ * <pre>
30
+ * 必填:否
31
+ * 说明:媒资文件名,支持精确匹配、模糊匹配。文件太多时使用该参数进行模糊匹配可能无法得到结果,推荐使用 media_name_fuzzy 参数。
32
+ * </pre>
33
+ */
21
34
@ SerializedName ("media_name" )
22
35
private String mediaName ;
23
36
37
+ /**
38
+ * <pre>
39
+ * 必填:否
40
+ * 说明:媒资文件名,模糊匹配。
41
+ * </pre>
42
+ */
43
+ @ SerializedName ("media_name_fuzzy" )
44
+ private String mediaNameFuzzy ;
45
+
46
+ /**
47
+ * <pre>
48
+ * 必填:否
49
+ * 说明:媒资上传时间 >= start_time。
50
+ * </pre>
51
+ */
24
52
@ SerializedName ("start_time" )
25
53
private Long startTime ;
54
+
55
+ /**
56
+ * <pre>
57
+ * 必填:否
58
+ * 说明:媒资上传时间 < end_time。
59
+ * </pre>
60
+ */
26
61
@ SerializedName ("end_time" )
27
62
private Long endTime ;
28
63
64
+ /**
65
+ * <pre>
66
+ * 必填:否
67
+ * 说明:分页拉取的起始偏移量。默认值:0。
68
+ * </pre>
69
+ */
29
70
@ SerializedName ("offset" )
30
71
private Integer offset ;
72
+
73
+ /**
74
+ * <pre>
75
+ * 必填:否
76
+ * 说明:分页拉取的最大返回结果数。默认值:100;最大值:100。
77
+ * </pre>
78
+ */
31
79
@ SerializedName ("limit" )
32
80
private Integer limit ;
33
81
You can’t perform that action at this time.
0 commit comments