mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-12-20 03:49:56 +08:00
30 lines
1014 B
C#
30 lines
1014 B
C#
|
|
namespace SKIT.FlurlHttpClient.Wechat.TenpayV3.Models
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// <para>表示 [GET] /papay/contracts/out-contract-code/{out_contract_code} 接口的请求。</para>
|
||
|
|
/// </summary>
|
||
|
|
public class GetHKPAPPayContractByOutContractCodeRequest : WechatTenpayRequest
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 获取或设置微信 AppId。
|
||
|
|
/// </summary>
|
||
|
|
[Newtonsoft.Json.JsonIgnore]
|
||
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
||
|
|
public virtual string AppId { get; set; } = string.Empty;
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 获取或设置模板 ID。
|
||
|
|
/// </summary>
|
||
|
|
[Newtonsoft.Json.JsonIgnore]
|
||
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
||
|
|
public int PlanId { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 获取或设置商户侧签约协议号。
|
||
|
|
/// </summary>
|
||
|
|
[Newtonsoft.Json.JsonIgnore]
|
||
|
|
[System.Text.Json.Serialization.JsonIgnore]
|
||
|
|
public string OutContractCode { get; set; } = string.Empty;
|
||
|
|
}
|
||
|
|
}
|