mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2026-03-10 00:13:40 +08:00
🎨 #2785【小程序】获取直播间分享二维码接口优化,支持分享路径和海报
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package cn.binarywang.wx.miniapp.bean.live;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class WxMaLiveSharedCode implements Serializable {
|
||||
private static final long serialVersionUID = 8525117884393611947L;
|
||||
/**
|
||||
* 分享二维码
|
||||
*/
|
||||
@SerializedName("cdnUrl")
|
||||
private String cdnUrl;
|
||||
/**
|
||||
* 分享路径
|
||||
*/
|
||||
@SerializedName("pagePath")
|
||||
private String pagePath;
|
||||
/**
|
||||
* 分享海报
|
||||
*/
|
||||
@SerializedName("posterUrl")
|
||||
private String posterUrl;
|
||||
}
|
||||
Reference in New Issue
Block a user