忽略dll文件git

This commit is contained in:
“wanyongkang”
2023-07-29 10:19:42 +08:00
parent 7f97317bcc
commit b562aba2b1
3868 changed files with 63608 additions and 385427 deletions

View File

@@ -1,48 +0,0 @@
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; }
}
}