OpenIdCardInfo.php 512 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. /**
  3. * 身份证信息
  4. * @author auto create
  5. */
  6. class OpenIdCardInfo
  7. {
  8. /**
  9. * 地址
  10. **/
  11. public $address;
  12. /**
  13. * 签发机构名称
  14. **/
  15. public $auth_inst_name;
  16. /**
  17. * 生日
  18. **/
  19. public $birthday;
  20. /**
  21. * 有效期间
  22. **/
  23. public $effect_period;
  24. /**
  25. * 性别
  26. **/
  27. public $gender;
  28. /**
  29. * 身份证号
  30. **/
  31. public $id_card_no;
  32. /**
  33. * 姓名
  34. **/
  35. public $name;
  36. /**
  37. * 国家
  38. **/
  39. public $nation;
  40. /**
  41. * 是否有效
  42. **/
  43. public $valid;
  44. }
  45. ?>