using System; using System.Collections.Generic; using System.Text; namespace CZKJ.GBRS2.ViewModel { /// /// 保单明细查询结果 /// public class ReportQueryViewModel { public string UserId { get; set; } /// /// 保单信息 /// public InsurancePolicyModel InsurancePolicyModel { get; set; } /// /// 受益人信息 /// public List PolicyBeneficiaryModel { get; set; } = new List(); /// /// 投保人信息 /// public PolicyHolderModel PolicyHolderModel { get; set; } /// /// 被保人信息 /// public List PolicyInsuredModel { get; set; } = new List(); /// /// 险险种列表 /// public List PolNo { get; set; } = new List(); /// /// 险种详情列表 /// public List inquiryInsurancePolicyModels { get; set; } = new List(); /// /// 主险名称 /// public string MianPolicyName { get; set; } /// /// 是否儿牙 /// public bool IsEY { get; set; } } public class Pol { /// /// 主险标识 /// public string MainFlag { get; set; } /// /// 险种号码 /// public string PolNo { get; set; } } }