feat(tenpayv3): 随官方更新合单查询相关接口模型

This commit is contained in:
Fu Diwei
2024-06-11 23:41:20 +08:00
parent e58c003dc3
commit d2ecffba9b
3 changed files with 13 additions and 4 deletions

View File

@@ -42,6 +42,13 @@ namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
[Newtonsoft.Json.JsonProperty("payer_currency")]
[System.Text.Json.Serialization.JsonPropertyName("payer_currency")]
public string PayerCurrency { get; set; } = default!;
/// <summary>
/// 获取或设置结算汇率(格式:外币兑换人民币的比例乘以 10 的 8 次方)。
/// </summary>
[Newtonsoft.Json.JsonProperty("settlement_rate")]
[System.Text.Json.Serialization.JsonPropertyName("settlement_rate")]
public long? SettlementRate { get; set; }
}
}