初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayCommerceMedicalCardQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceMedicalCardQueryModel : AopObject
{
/// <summary>
/// 支付授权码
/// </summary>
[JsonProperty("auth_code")]
public string AuthCode { get; set; }
/// <summary>
/// 买家支付宝账号对应的支付宝唯一用户号。 以2088开头的纯16位数字。
/// </summary>
[JsonProperty("buyer_id")]
public string BuyerId { get; set; }
/// <summary>
/// 卡颁发机构编号
/// </summary>
[JsonProperty("card_org_no")]
public string CardOrgNo { get; set; }
/// <summary>
/// 业务扩展参数
/// </summary>
[JsonProperty("extend_params")]
public string ExtendParams { get; set; }
/// <summary>
/// 跳回的地址
/// </summary>
[JsonProperty("return_url")]
public string ReturnUrl { get; set; }
/// <summary>
/// 支付场景 条码支付取值bar_code 声波支付取值wave_code
/// </summary>
[JsonProperty("scene")]
public string Scene { get; set; }
}
}