From 02f933ee946d0991ecf7b07577cc732e08398b29 Mon Sep 17 00:00:00 2001 From: Fu Diwei Date: Thu, 5 Aug 2021 12:51:57 +0800 Subject: [PATCH] =?UTF-8?q?feat(tenpayv3):=20=E9=9A=8F=E5=AE=98=E6=96=B9?= =?UTF-8?q?=E6=9B=B4=E6=96=B0=E7=94=B5=E5=95=86=E5=88=86=E8=B4=A6=E6=8E=A5?= =?UTF-8?q?=E5=8F=A3=E7=9B=B8=E5=85=B3=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...eateEcommerceProfitSharingOrderResponse.cs | 29 +------------------ 1 file changed, 1 insertion(+), 28 deletions(-) diff --git a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Models/EcommerceProfitSharing/CreateEcommerceProfitSharingOrderResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Models/EcommerceProfitSharing/CreateEcommerceProfitSharingOrderResponse.cs index 23b23644..326d6d3a 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Models/EcommerceProfitSharing/CreateEcommerceProfitSharingOrderResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Models/EcommerceProfitSharing/CreateEcommerceProfitSharingOrderResponse.cs @@ -6,34 +6,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models /// /// 表示 [POST] /ecommerce/profitsharing/orders 接口的响应。 /// - public class CreateEcommerceProfitSharingOrderResponse : WechatTenpayResponse + public class CreateEcommerceProfitSharingOrderResponse : GetEcommerceProfitSharingOrderByOutOrderNumberResponse { - /// - /// 获取或设置微信子商户号。 - /// - [Newtonsoft.Json.JsonProperty("sub_mchid")] - [System.Text.Json.Serialization.JsonPropertyName("sub_mchid")] - public string SubMerchantId { get; set; } = default!; - - /// - /// 获取或设置微信订单号。 - /// - [Newtonsoft.Json.JsonProperty("transaction_id")] - [System.Text.Json.Serialization.JsonPropertyName("transaction_id")] - public string TransactionId { get; set; } = default!; - - /// - /// 获取或设置商户分账单号。 - /// - [Newtonsoft.Json.JsonProperty("out_order_no")] - [System.Text.Json.Serialization.JsonPropertyName("out_order_no")] - public string OutOrderNumber { get; set; } = default!; - - /// - /// 获取或设置微信分账单号。 - /// - [Newtonsoft.Json.JsonProperty("order_id")] - [System.Text.Json.Serialization.JsonPropertyName("order_id")] - public string OrderId { get; set; } = default!; } }