Skip to content
Merged
Show file tree
Hide file tree
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 @@ -27,4 +27,10 @@ public class WxMaLiveGoodInfo implements Serializable {
* https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/industry/liveplayer/pendant.html
*/
private List<String> goodsKey;


/**
* 当商品为第三方小程序的商品则填写为对应第三方小程序的appid,自身小程序商品则为''
*/
private String thirdPartyAppid;
}
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ public static class Goods implements Serializable {
*/
@SerializedName("third_party_tag")
private String thirdPartyTag;

/**
* 当商品为第三方小程序的商品则填写为对应第三方小程序的appid,自身小程序商品则为''
*/
private String thirdPartyAppid;
}

/**
Expand Down