Skip to content

fix GitHub issue #3588 #3589

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,66 @@
public class WxMaVodListMediaRequest implements Serializable {
private static final long serialVersionUID = 7495157056049312108L;

/**
* <pre>
* 必填:否
* 说明:根据剧目id获取剧集信息
* </pre>
*/
@SerializedName("drama_id")
private Integer dramaId;

/**
* <pre>
* 必填:否
* 说明:媒资文件名,支持精确匹配、模糊匹配。文件太多时使用该参数进行模糊匹配可能无法得到结果,推荐使用 media_name_fuzzy 参数。
* </pre>
*/
@SerializedName("media_name")
private String mediaName;

/**
* <pre>
* 必填:否
* 说明:媒资文件名,模糊匹配。
* </pre>
*/
@SerializedName("media_name_fuzzy")
private String mediaNameFuzzy;

/**
* <pre>
* 必填:否
* 说明:媒资上传时间 >= start_time。
* </pre>
*/
@SerializedName("start_time")
private Long startTime;

/**
* <pre>
* 必填:否
* 说明:媒资上传时间 < end_time。
* </pre>
*/
@SerializedName("end_time")
private Long endTime;

/**
* <pre>
* 必填:否
* 说明:分页拉取的起始偏移量。默认值:0。
* </pre>
*/
@SerializedName("offset")
private Integer offset;

/**
* <pre>
* 必填:否
* 说明:分页拉取的最大返回结果数。默认值:100;最大值:100。
* </pre>
*/
@SerializedName("limit")
private Integer limit;

Expand Down