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