-
-
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.
🎨 #2785【小程序】获取直播间分享二维码接口优化,支持分享路径和海报
- Loading branch information
1 parent
c78a1f5
commit 0f9e75a
Showing
4 changed files
with
30 additions
and
4 deletions.
There are no files selected for viewing
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
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
25 changes: 25 additions & 0 deletions
25
weixin-java-miniapp/src/main/java/cn/binarywang/wx/miniapp/bean/live/WxMaLiveSharedCode.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,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; | ||
} |
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