mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-07-16 07:59:44 +08:00
feat(tenpayv3): 随官方更新部分接口模型
This commit is contained in:
parent
fdc318a8c0
commit
ceb210e7a9
@ -40,9 +40,7 @@
|
||||
/// <summary>
|
||||
/// 获取或设置是否需要填写支行。
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonConverter(typeof(Newtonsoft.Json.Converters.TextualBooleanConverter))]
|
||||
[Newtonsoft.Json.JsonProperty("need_bank_branch")]
|
||||
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Converters.TextualBooleanConverter))]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("need_bank_branch")]
|
||||
public bool RequireBankBranch { get; set; }
|
||||
}
|
||||
|
@ -73,7 +73,6 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("transferable")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("transferable")]
|
||||
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Converters.TextualNullableBooleanConverter))]
|
||||
public bool? IsTransferable { get; set; }
|
||||
|
||||
/// <summary>
|
||||
@ -81,7 +80,6 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("shareable")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("shareable")]
|
||||
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Converters.TextualNullableBooleanConverter))]
|
||||
public bool? IsShareable { get; set; }
|
||||
|
||||
/// <summary>
|
||||
|
@ -349,7 +349,6 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
||||
/// </summary>
|
||||
[Newtonsoft.Json.JsonProperty("need_collection")]
|
||||
[System.Text.Json.Serialization.JsonPropertyName("need_collection")]
|
||||
[System.Text.Json.Serialization.JsonConverter(typeof(System.Text.Json.Converters.TextualNullableBooleanConverter))]
|
||||
public bool? RequireCollection { get; set; }
|
||||
|
||||
/// <summary>
|
||||
|
@ -6,7 +6,7 @@
|
||||
"bank_alias_code": "1000006247",
|
||||
"account_bank": "招商银行其他银行",
|
||||
"account_bank_code": 1001,
|
||||
"need_bank_branch": "true"
|
||||
"need_bank_branch": true
|
||||
}
|
||||
]
|
||||
}
|
@ -6,7 +6,7 @@
|
||||
"bank_alias_code": "1000006247",
|
||||
"account_bank": "招商银行其他银行",
|
||||
"account_bank_code": 1001,
|
||||
"need_bank_branch": "true"
|
||||
"need_bank_branch": true
|
||||
}
|
||||
],
|
||||
"offset": "0"
|
||||
|
@ -7,7 +7,7 @@
|
||||
"goods_name": "xxx商品可用",
|
||||
"stock_type": "NORMAL",
|
||||
"transferable": false,
|
||||
"shareable": "false",
|
||||
"shareable": false,
|
||||
"coupon_state": "SENDED",
|
||||
"display_pattern_info": {
|
||||
"merchant_logo_url": "https://xxx",
|
||||
|
@ -30,7 +30,7 @@
|
||||
"description": "就餐的预估费用"
|
||||
},
|
||||
"total_amount": 40000,
|
||||
"need_collection": "true",
|
||||
"need_collection": true,
|
||||
"collection": {
|
||||
"state": "USER_PAID",
|
||||
"total_amount": 50000,
|
||||
|
@ -30,7 +30,7 @@
|
||||
"description": "就餐的预估费用"
|
||||
},
|
||||
"total_amount": 40000,
|
||||
"need_collection": "true",
|
||||
"need_collection": true,
|
||||
"collection": {
|
||||
"state": "USER_PAID",
|
||||
"total_amount": 50000,
|
||||
|
Loading…
Reference in New Issue
Block a user