123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- using CZFW.Framework.Model.Entity;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace CZKJ.GBRS2.ViewModel
- {
-
-
-
- public class PolicyBeneficiaryModel:EntityBase
- {
-
-
-
- public string RelationToInsured { get; set; }
-
-
-
- public string BnfGrade { get; set; }
-
-
-
-
- public string BnfType { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string Sex { get; set; }
-
-
-
- public string Birthday { get; set; }
-
-
-
- public string IDType { get; set; }
-
-
-
- public string IDNo { get; set; }
-
-
-
- public string ContNo { get; set; }
-
-
-
- public string PolNo { get; set; }
-
-
-
- public string InsuredNo { get; set; }
-
-
-
-
- public int BnfNo { get; set; }
-
-
-
- public decimal BnfLot { get; set; }
-
-
-
- public string CustomerNo { get; set; }
-
-
-
-
- public string PostalAddress { get; set; }
-
-
-
- public string ZipCode { get; set; }
-
-
-
- public string Remark { get; set; }
-
-
-
- public string BankCode { get; set; }
-
-
-
- public string BankAccNo { get; set; }
-
-
-
- public string AccName { get; set; }
-
-
-
- public string IDExpDate { get; set; }
-
-
-
- public string Mobile { get; set; }
-
-
-
- public string ManageCom { get; set; }
-
-
-
- public string ComCode { get; set; }
-
-
-
- public string ModifyOperator { get; set; }
-
-
-
- public string NativePlace { get; set; }
-
-
-
- public string RgtAddress { get; set; }
-
-
-
- public string MarRiage { get; set; }
-
-
-
- public string OccupationType { get; set; }
-
-
-
- public string OccupationCode { get; set; }
-
-
-
- public string WorkType { get; set; }
-
-
-
- public string PluralityType { get; set; }
-
-
-
- public string LicenseType { get; set; }
-
-
-
- public string Email { get; set; }
-
-
-
- public string Phone { get; set; }
-
-
-
- public string IsCity { get; set; }
-
-
-
- public string AddressNo { get; set; }
-
-
-
- public string BankProvince { get; set; }
- }
- }
|