忽略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,60 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// InsCoverage Data Structure.
/// </summary>
[Serializable]
public class InsCoverage : AopObject
{
/// <summary>
/// 险种名称
/// </summary>
[JsonProperty("coverage_name")]
public string CoverageName { get; set; }
/// <summary>
/// 险种编号
/// </summary>
[JsonProperty("coverage_no")]
public string CoverageNo { get; set; }
/// <summary>
/// 险种失效时间
/// </summary>
[JsonProperty("effect_end_time")]
public string EffectEndTime { get; set; }
/// <summary>
/// 险种生效时间
/// </summary>
[JsonProperty("effect_start_time")]
public string EffectStartTime { get; set; }
/// <summary>
/// 不计免赔;0默认不投保; 1默认投保。
/// </summary>
[JsonProperty("iop")]
public long Iop { get; set; }
/// <summary>
/// 不计免赔的保费
/// </summary>
[JsonProperty("iop_premium")]
public long IopPremium { get; set; }
/// <summary>
/// 保费;单位分
/// </summary>
[JsonProperty("premium")]
public long Premium { get; set; }
/// <summary>
/// 保额;单位分
/// </summary>
[JsonProperty("sum_insured")]
public long SumInsured { get; set; }
}
}