🎨 #2687 【小程序】直播商品管理接口添加缺失的字段thirdPartyAppid

This commit is contained in:
徐凯旋
2022-06-14 09:42:32 +08:00
committed by Binary Wang
parent d390c5d9fe
commit a9fe0b29d4
5 changed files with 32 additions and 15 deletions

View File

@ -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;
}

View File

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