EntUser.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. # Generated by the protocol buffer compiler. DO NOT EDIT!
  3. # NO CHECKED-IN PROTOBUF GENCODE
  4. # source: api/EntUser.proto
  5. namespace Proto\Api;
  6. use Google\Protobuf\Internal\GPBType;
  7. use Google\Protobuf\Internal\RepeatedField;
  8. use Google\Protobuf\Internal\GPBUtil;
  9. /**
  10. * 用户实体
  11. *
  12. * Generated from protobuf message <code>proto.api.EntUser</code>
  13. */
  14. class EntUser extends \Google\Protobuf\Internal\Message
  15. {
  16. /**
  17. * Generated from protobuf field <code>.proto.api.UserBaseInfo base_info = 1;</code>
  18. */
  19. protected $base_info = null;
  20. /**
  21. * Constructor.
  22. *
  23. * @param array $data {
  24. * Optional. Data for populating the Message object.
  25. *
  26. * @type \Proto\Api\UserBaseInfo $base_info
  27. * }
  28. */
  29. public function __construct($data = NULL) {
  30. \GPBMetadata\Api\EntUser::initOnce();
  31. parent::__construct($data);
  32. }
  33. /**
  34. * Generated from protobuf field <code>.proto.api.UserBaseInfo base_info = 1;</code>
  35. * @return \Proto\Api\UserBaseInfo|null
  36. */
  37. public function getBaseInfo()
  38. {
  39. return $this->base_info;
  40. }
  41. public function hasBaseInfo()
  42. {
  43. return isset($this->base_info);
  44. }
  45. public function clearBaseInfo()
  46. {
  47. unset($this->base_info);
  48. }
  49. /**
  50. * Generated from protobuf field <code>.proto.api.UserBaseInfo base_info = 1;</code>
  51. * @param \Proto\Api\UserBaseInfo $var
  52. * @return $this
  53. */
  54. public function setBaseInfo($var)
  55. {
  56. GPBUtil::checkMessage($var, \Proto\Api\UserBaseInfo::class);
  57. $this->base_info = $var;
  58. return $this;
  59. }
  60. }