File tree Expand file tree Collapse file tree 1 file changed +48
-0
lines changed
weixin-java-miniapp/src/main/java/cn/binarywang/wx/miniapp/bean/vod Expand file tree Collapse file tree 1 file changed +48
-0
lines changed Original file line number Diff line number Diff line change 1616public class WxMaVodListMediaRequest implements Serializable {
1717 private static final long serialVersionUID = 7495157056049312108L ;
1818
19+ /**
20+ * <pre>
21+ * 必填:否
22+ * 说明:根据剧目id获取剧集信息
23+ * </pre>
24+ */
1925 @ SerializedName ("drama_id" )
2026 private Integer dramaId ;
27+
28+ /**
29+ * <pre>
30+ * 必填:否
31+ * 说明:媒资文件名,支持精确匹配、模糊匹配。文件太多时使用该参数进行模糊匹配可能无法得到结果,推荐使用 media_name_fuzzy 参数。
32+ * </pre>
33+ */
2134 @ SerializedName ("media_name" )
2235 private String mediaName ;
2336
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+ */
2452 @ SerializedName ("start_time" )
2553 private Long startTime ;
54+
55+ /**
56+ * <pre>
57+ * 必填:否
58+ * 说明:媒资上传时间 < end_time。
59+ * </pre>
60+ */
2661 @ SerializedName ("end_time" )
2762 private Long endTime ;
2863
64+ /**
65+ * <pre>
66+ * 必填:否
67+ * 说明:分页拉取的起始偏移量。默认值:0。
68+ * </pre>
69+ */
2970 @ SerializedName ("offset" )
3071 private Integer offset ;
72+
73+ /**
74+ * <pre>
75+ * 必填:否
76+ * 说明:分页拉取的最大返回结果数。默认值:100;最大值:100。
77+ * </pre>
78+ */
3179 @ SerializedName ("limit" )
3280 private Integer limit ;
3381
You can’t perform that action at this time.
0 commit comments