mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-12-22 03:19:55 +08:00
feat(wxapi): 统一小程序直播相关接口的商品 ID 字段类型
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
{
|
||||
@@ -12,6 +12,6 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("goods_ids")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("goods_ids")]
|
||||
public IList<int> GoodsIdList { get; set; } = new List<int>();
|
||||
public IList<long> GoodsIdList { get; set; } = new List<long>();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
{
|
||||
@@ -19,6 +19,6 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("ids")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("ids")]
|
||||
public IList<int> GoodsIdList { get; set; } = new List<int>();
|
||||
public IList<long> GoodsIdList { get; set; } = new List<long>();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user