From 65bcf72c66be739f5a6850fa2fcd2bd53618289c Mon Sep 17 00:00:00 2001 From: Fu Diwei Date: Thu, 5 Aug 2021 12:51:45 +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=E8=BF=9E=E9=94=81=E5=93=81=E7=89=8C=E5=88=86?= =?UTF-8?q?=E8=B4=A6=E6=8E=A5=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 --- .../CreateBrandProfitSharingOrderResponse.cs | 36 +------------------ 1 file changed, 1 insertion(+), 35 deletions(-) diff --git a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Models/BrandProfitSharing/CreateBrandProfitSharingOrderResponse.cs b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Models/BrandProfitSharing/CreateBrandProfitSharingOrderResponse.cs index 71e3af98..b15892da 100644 --- a/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Models/BrandProfitSharing/CreateBrandProfitSharingOrderResponse.cs +++ b/src/SKIT.FlurlHttpClient.Wechat.TenpayV3/Models/BrandProfitSharing/CreateBrandProfitSharingOrderResponse.cs @@ -6,41 +6,7 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models /// /// 表示 [POST] /brand/profitsharing/orders 接口的响应。 /// - public class CreateBrandProfitSharingOrderResponse : WechatTenpayResponse + public class CreateBrandProfitSharingOrderResponse : GetBrandProfitSharingOrderByOutOrderNumberResponse { - /// - /// 获取或设置品牌主商户号。 - /// - [Newtonsoft.Json.JsonProperty("brand_mchid")] - [System.Text.Json.Serialization.JsonPropertyName("brand_mchid")] - public string BrandMerchantId { get; set; } = default!; - - /// - /// 获取或设置微信子商户号。 - /// - [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!; } }