Skip to content

Commit

Permalink
fix #20 GetOrderListResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
niltor committed Apr 10, 2024
1 parent d581a10 commit 69194ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/AspNetCore/PddOpenSdk.AspNetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<PackageLicenseUrl></PackageLicenseUrl>
<PackageIcon>logo.jpg</PackageIcon>
<PackageId>MSDev.PddOpenSdk.AspNetCore</PackageId>
<Version>8.0.0</Version>
<Version>8.0.1</Version>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<ProduceReferenceAssembly>True</ProduceReferenceAssembly>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions src/PddOpenSdk/Models/Response/Order/GetOrderListResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ public partial class ItemListResponse : PddResponseModel
/// 商品编码
/// </summary>
[JsonPropertyName("goods_id")]
public string GoodsId { get; set; }
public long GoodsId { get; set; }

/// <summary>
/// 商品图片
Expand Down Expand Up @@ -758,7 +758,7 @@ public partial class ItemListResponse : PddResponseModel
/// 商品sku编码
/// </summary>
[JsonPropertyName("sku_id")]
public string SkuId { get; set; }
public long SkuId { get; set; }

}
public partial class OrderDepotInfoResponse : PddResponseModel
Expand Down

0 comments on commit 69194ba

Please sign in to comment.