-
-
Notifications
You must be signed in to change notification settings - Fork 8.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
662fd1e
commit aad2e5b
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
weixin-java-open/src/main/java/me/chanjar/weixin/open/bean/ma/WxOpenMaPreviewInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters