using CZFW.Framework.Model.Entity; using System; using System.Collections.Generic; using System.Text; namespace CZKJ.GBRS2.ViewModel { /// /// 保单投保人信息 /// public class PolicyHolderModel:EntityBase { /// /// 投保人名称 /// public string AppntName { get; set; } /// /// 投保人性别 /// public string AppntSex { get; set; } /// /// 投保人出生日期 /// public string AppntBirthday { get; set; } /// /// 投保人类型 /// public string AppntType { get; set; } /// /// 证件类型 /// public string IDType { get; set; } /// /// 证件号码 /// public string IDNo { get; set; } /// /// 保单号 /// public string ContNo { get; set; } /// /// 印刷号码 /// public string PrtNo { get; set; } /// /// 投保人客户号码 /// public string AppntNo { get; set; } /// /// 投保人级别 /// public string AppntGrade { get; set; } /// /// 国籍 /// public string NativePlace { get; set; } /// /// 民族 /// public string Nationality { get; set; } /// /// 户口所在地 /// public string RgtAddress { get; set; } /// /// 健康状况 /// public string Marriage { get; set; } /// /// 结婚日期 /// public string MarriageDATE { get; set; } /// /// 健康状态 /// public string Health { get; set; } /// /// 身高 /// public decimal Stature { get; set; } /// /// 体重 /// public decimal Avoirdupois { get; set; } /// /// 学历 /// public string Degree { get; set; } /// /// 信用等级 /// public string CreditGrade { get; set; } /// /// 银行编码 /// public string BankCode { get; set; } /// /// 银行帐号 /// public string BankAccNo { get; set; } /// /// 银行帐户名 /// public string AccName { get; set; } /// /// 职位 /// public string Position { get; set; } /// /// 工资 /// public decimal Salary { get; set; } /// /// 职业类别 /// public string OccupationType { get; set; } /// /// 职业代码 /// public string OccupationCode { get; set; } /// /// 职业(工种) /// public string WorkType { get; set; } /// /// 兼职(工种) /// public string PluralityType { get; set; } /// /// 是否吸烟标志 /// public string SmokeFlag { get; set; } /// /// 驾照 /// public string License { get; set; } /// /// 驾照类型 /// public string LicenseType { get; set; } /// /// 与被保人关系 /// public string RelationToInsured { get; set; } /// /// 是否有社保标志 /// public string SocialInsuFlag { get; set; } /// /// 证件有效期 /// public string IDExpDATE { get; set; } /// /// 死亡日期 /// public string DeathDATE { get; set; } /// /// 黑名单标识 /// public string BlacklistFlag { get; set; } /// /// Vip值 /// public string VIPValue { get; set; } /// /// 短信标识 /// public string SendMsgFlag { get; set; } /// /// 邮件标识 /// public string SendMailFlag { get; set; } /// /// Qq信息标识 /// public string SendQQFlag { get; set; } /// /// Msn信息标识 /// public string SendMSNFlag { get; set; } /// /// 微信标示 /// public string WechatFlag { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 贷款银行 /// public string LoanBank { get; set; } /// /// 贷款合同号 /// public string LoanNo { get; set; } /// /// 贷款金额 /// public decimal LoanMoney { get; set; } /// /// 贷款开始日期 /// public string LoanStartDATE { get; set; } /// /// 贷款结束日期 /// public string LoanEndDATE { get; set; } /// /// 居民类型 /// public string ResidentsType { get; set; } /// /// 通讯地址 /// public string PostalAddress { get; set; } /// /// 通讯邮编 /// public string ZipCode { get; set; } /// /// 通讯电话 /// public string Phone { get; set; } /// /// 通讯传真 /// public string Fax { get; set; } /// /// 单位地址 /// public string HomeAddress { get; set; } /// /// 单位邮编 /// public string CompanyZipCode { get; set; } /// /// 单位电话 /// public string CompanyPhone { get; set; } /// /// 单位传真 /// public string CompanyFax { get; set; } /// /// 手机 /// public string Mobile { get; set; } /// /// 手机中文标示 /// public string MobileChs { get; set; } /// /// e_mail /// public string EMail { get; set; } /// /// 传呼 /// public string BP { get; set; } /// /// 手机2 /// public string Mobile2 { get; set; } /// /// 手机中文标示2 /// public string MobileChs2 { get; set; } /// /// e_mail2 /// public string EMail2 { get; set; } /// /// 单位名称 /// public string GrpName { get; set; } /// /// 省 /// public string Province { get; set; } /// /// 市 /// public string City { get; set; } /// /// 区/县 /// public string County { get; set; } /// /// 联系地址省 /// public string PostalProvince { get; set; } /// /// 联系地址市 /// public string PostalCity { get; set; } /// /// 联系地址区 /// public string PostalCounty { get; set; } /// /// 住址省编码 /// public string HomeProvince { get; set; } /// /// 住址市编码 /// public string HomeCity { get; set; } /// /// 住址区编码 /// public string HomeCounty { get; set; } /// /// 联系地址省编码 /// public string ProvinceCode { get; set; } /// /// 联系地址市编码 /// public string CityCode { get; set; } /// /// 联系地址区编码 /// public string CountyCode { get; set; } } }