Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayInsUnderwriteUserPolicyQueryModel.cs

44 lines
1.3 KiB
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayInsUnderwriteUserPolicyQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayInsUnderwriteUserPolicyQueryModel : AopObject
{
/// <summary>
/// 页码必须为大于0的整数 1表示第一页2表示第2页依次类推。不填默认值为1
/// </summary>
[JsonProperty("page_no")]
public long PageNo { get; set; }
/// <summary>
/// 每页记录条数必须为大于0的整数最大值为20,不填默认值为10
/// </summary>
[JsonProperty("page_size")]
public long PageSize { get; set; }
/// <summary>
/// 查询对应的保险干系人
/// </summary>
[JsonProperty("person")]
public InsQueryPerson Person { get; set; }
/// <summary>
/// 查询的保单对于的产品列表。查询返回的结果是这几个产品下的保单,格式为: [产品码1,产品码2,...]
/// </summary>
[JsonProperty("product_list")]
public List<string> ProductList { get; set; }
/// <summary>
/// 保单状态.INEFFECTIVE:未生效、GUARANTEE:保障中、EXPIRED:已失效、SURRENDERRED:已退保、ALL: 所有保单 不填默认值为ALL(所有保单)
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
}
}