忽略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,44 +0,0 @@
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// InsSumInsured Data Structure.
/// </summary>
[Serializable]
public class InsSumInsured : AopObject
{
/// <summary>
/// 保额默认值;单位分
/// </summary>
[JsonProperty("default_value")]
public long DefaultValue { get; set; }
/// <summary>
/// 保额最大值;单位分,当sum_insured_type=MONEY_RANGE时该值有效
/// </summary>
[JsonProperty("max_value")]
public long MaxValue { get; set; }
/// <summary>
/// 保额最小值;单位分,当sum_insured_type=MONEY_RANGE时该值有效
/// </summary>
[JsonProperty("min_value")]
public long MinValue { get; set; }
/// <summary>
/// 保额类型;MONEY_RANGE:金额范围,MONEY_LIST:金额可选值,ENUM_VALUE:枚举值
/// </summary>
[JsonProperty("sum_insured_type")]
public string SumInsuredType { get; set; }
/// <summary>
/// 保额列表;列表里的值单位为分,当sum_insured_type=MONEY_LIST时该值有效
/// </summary>
[JsonProperty("sum_insureds")]
public List<long> SumInsureds { get; set; }
}
}