Skip to content

Commit

Permalink
Merge pull request #2991 from JeffreySu/Developer
Browse files Browse the repository at this point in the history
TenPayV3 v1.2.1.1 解决微信支付分、完成订单参数可为空的问题 Issue #2989 感谢 @zariczhu
  • Loading branch information
JeffreySu committed Feb 19, 2024
2 parents a91f987 + f164620 commit 54820d0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public CancelServiceOrderRequestData()
/// <para>path商户系统内部服务订单号(不是交易单号),与创建订单时一致。 </para>
/// <para>示例值:2304203423948239423 </para>
/// </summary>
[JsonIgnore]
public string out_order_no { get; set; }

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
----------------------------------------------------------------*/


using Newtonsoft.Json;
using Senparc.Weixin.TenPayV3.Entities;
using System;
using System.Collections.Generic;
Expand Down Expand Up @@ -86,6 +87,7 @@ public CompleteServiceOrderRequestData()
/// <para>path 商户系统内部服务订单号(不是交易单号),与创建订单时一致</para>
/// <para>示例值:1234323JKHDFE1243252 </para>
/// </summary>
[JsonIgnore]
public string out_order_no { get; set; }

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Version>1.2.1</Version>
<Version>1.2.1.1</Version>
<AssemblyName>Senparc.Weixin.TenPayV3</AssemblyName>
<RootNamespace>Senparc.Weixin.TenPayV3</RootNamespace>
<LangVersion>10.0</LangVersion>
Expand Down Expand Up @@ -53,7 +53,8 @@
2、添加小程序发货信息管理服务消息事件 PR#2908
3、TenPayV3分账 字段内部加密 PR#2909
v1.1.0 TenPaySignHelper.GetJsApiUiPackage() 方法添加 senparcWeixinSettingForTenpayV3 参数
</PackageReleaseNotes>
v1.2.1.1 解决微信支付分、完成订单参数可为空的问题 Issue #2989
</PackageReleaseNotes>
<RepositoryUrl>https://github.com/JeffreySu/WeiXinMPSDK</RepositoryUrl>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
Expand Down

0 comments on commit 54820d0

Please sign in to comment.