Files

66 lines
1.5 KiB
C#
Raw Permalink Normal View History

2024-04-10 13:55:27 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// InsApplication Data Structure.
/// </summary>
[Serializable]
public class InsApplication : AopObject
{
/// <summary>
/// 投保参数 ,每个产品特有的投保参数,如航空险的航班信息;标准json格式
/// </summary>
[JsonProperty("biz_data")]
public string BizData { get; set; }
/// <summary>
/// 份数
/// </summary>
[JsonProperty("copies")]
public long Copies { 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>
/// 保险标的
/// </summary>
[JsonProperty("ins_object")]
public InsObject InsObject { get; set; }
/// <summary>
/// 被保险人
/// </summary>
[JsonProperty("insured")]
public InsPerson Insured { get; set; }
/// <summary>
/// 险种保障期限,数字+"Y/M/D"结尾,非固定期限险种或多固定期限险种必填
/// </summary>
[JsonProperty("period")]
public string Period { get; set; }
/// <summary>
/// 保费
/// </summary>
[JsonProperty("premium")]
public long Premium { get; set; }
/// <summary>
/// 保额
/// </summary>
[JsonProperty("sum_insured")]
public long SumInsured { get; set; }
}
}