忽略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,66 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayInsSceneCouponReceiveModel Data Structure.
/// </summary>
[Serializable]
public class AlipayInsSceneCouponReceiveModel : AopObject
{
/// <summary>
/// 投保人
/// </summary>
[JsonProperty("applicant")]
public InsPerson Applicant { get; set; }
/// <summary>
/// 保险发奖凭证
/// </summary>
[JsonProperty("certificate")]
public InsCertificate Certificate { get; set; }
/// <summary>
/// 被保险人
/// </summary>
[JsonProperty("insured")]
public InsPerson Insured { get; set; }
/// <summary>
/// 市场类型;TAOBAO:淘宝平台,ANT: 蚂蚁平台
/// </summary>
[JsonProperty("market_type")]
public string MarketType { get; set; }
/// <summary>
/// 商户生成的外部业务号,必须保证唯一,幂等控制
/// </summary>
[JsonProperty("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 商户pid
/// </summary>
[JsonProperty("partner_id")]
public string PartnerId { get; set; }
/// <summary>
/// 产品编码;由蚂蚁保险平台分配
/// </summary>
[JsonProperty("prod_code")]
public string ProdCode { get; set; }
/// <summary>
/// 产品版本号
/// </summary>
[JsonProperty("prod_version")]
public string ProdVersion { get; set; }
/// <summary>
/// 服务场景; propertyPaySuccess:蚂蚁物业支付成功页面
/// </summary>
[JsonProperty("service_scenario")]
public string ServiceScenario { get; set; }
}
}