1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # NO CHECKED-IN PROTOBUF GENCODE
- # source: api/EntUser.proto
- namespace Proto\Api;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * 用户实体
- *
- * Generated from protobuf message <code>proto.api.EntUser</code>
- */
- class EntUser extends \Google\Protobuf\Internal\Message
- {
- /**
- * Generated from protobuf field <code>.proto.api.UserBaseInfo base_info = 1;</code>
- */
- protected $base_info = null;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type \Proto\Api\UserBaseInfo $base_info
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\EntUser::initOnce();
- parent::__construct($data);
- }
- /**
- * Generated from protobuf field <code>.proto.api.UserBaseInfo base_info = 1;</code>
- * @return \Proto\Api\UserBaseInfo|null
- */
- public function getBaseInfo()
- {
- return $this->base_info;
- }
- public function hasBaseInfo()
- {
- return isset($this->base_info);
- }
- public function clearBaseInfo()
- {
- unset($this->base_info);
- }
- /**
- * Generated from protobuf field <code>.proto.api.UserBaseInfo base_info = 1;</code>
- * @param \Proto\Api\UserBaseInfo $var
- * @return $this
- */
- public function setBaseInfo($var)
- {
- GPBUtil::checkMessage($var, \Proto\Api\UserBaseInfo::class);
- $this->base_info = $var;
- return $this;
- }
- }
|