feat(wxapi): 统一小程序直播相关接口的商品 ID 字段类型

This commit is contained in:
Fu Diwei
2023-08-25 22:55:42 +08:00
parent 90bbe3a6c8
commit f8347ef9ef
2 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
using System.Collections.Generic; using System.Collections.Generic;
namespace SKIT.FlurlHttpClient.Wechat.Api.Models namespace SKIT.FlurlHttpClient.Wechat.Api.Models
{ {
@@ -12,6 +12,6 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
/// </summary> /// </summary>
[Newtonsoft.Json.JsonProperty("goods_ids")] [Newtonsoft.Json.JsonProperty("goods_ids")]
[System.Text.Json.Serialization.JsonPropertyName("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>();
} }
} }

View File

@@ -1,4 +1,4 @@
using System.Collections.Generic; using System.Collections.Generic;
namespace SKIT.FlurlHttpClient.Wechat.Api.Models namespace SKIT.FlurlHttpClient.Wechat.Api.Models
{ {
@@ -19,6 +19,6 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Models
/// </summary> /// </summary>
[Newtonsoft.Json.JsonProperty("ids")] [Newtonsoft.Json.JsonProperty("ids")]
[System.Text.Json.Serialization.JsonPropertyName("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>();
} }
} }