Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/InsSumInsured.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

44 lines
1.2 KiB
C#

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; }
}
}