UserIdentity.php 716 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. namespace plugin\admin\app\model;
  3. use plugin\admin\app\model\Base;
  4. /**
  5. * @property integer $id 主键(主键)
  6. * @property string $name 姓名
  7. * @property string $number 身份证号码
  8. * @property integer $uid 会员ID
  9. * @property string $oname 旧姓名
  10. * @property string $onumber 旧身份证号码
  11. * @property mixed $created_at 创建时间
  12. * @property mixed $updated_at 更新时间
  13. */
  14. class UserIdentity extends Base
  15. {
  16. /**
  17. * The table associated with the model.
  18. *
  19. * @var string
  20. */
  21. protected $table = 'wa_user_identity';
  22. /**
  23. * The primary key associated with the table.
  24. *
  25. * @var string
  26. */
  27. protected $primaryKey = 'id';
  28. }