123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <?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.UserBaseInfo</code>
- */
- class UserBaseInfo extends \Google\Protobuf\Internal\Message
- {
- /**
- * 用户id
- *
- * Generated from protobuf field <code>int32 user_id = 1;</code>
- */
- protected $user_id = 0;
- /**
- * 用户名称
- *
- * Generated from protobuf field <code>string username = 2;</code>
- */
- protected $username = '';
- /**
- * 用户手机号
- *
- * Generated from protobuf field <code>string phone = 3;</code>
- */
- protected $phone = '';
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type int $user_id
- * 用户id
- * @type string $username
- * 用户名称
- * @type string $phone
- * 用户手机号
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Api\EntUser::initOnce();
- parent::__construct($data);
- }
- /**
- * 用户id
- *
- * Generated from protobuf field <code>int32 user_id = 1;</code>
- * @return int
- */
- public function getUserId()
- {
- return $this->user_id;
- }
- /**
- * 用户id
- *
- * Generated from protobuf field <code>int32 user_id = 1;</code>
- * @param int $var
- * @return $this
- */
- public function setUserId($var)
- {
- GPBUtil::checkInt32($var);
- $this->user_id = $var;
- return $this;
- }
- /**
- * 用户名称
- *
- * Generated from protobuf field <code>string username = 2;</code>
- * @return string
- */
- public function getUsername()
- {
- return $this->username;
- }
- /**
- * 用户名称
- *
- * Generated from protobuf field <code>string username = 2;</code>
- * @param string $var
- * @return $this
- */
- public function setUsername($var)
- {
- GPBUtil::checkString($var, True);
- $this->username = $var;
- return $this;
- }
- /**
- * 用户手机号
- *
- * Generated from protobuf field <code>string phone = 3;</code>
- * @return string
- */
- public function getPhone()
- {
- return $this->phone;
- }
- /**
- * 用户手机号
- *
- * Generated from protobuf field <code>string phone = 3;</code>
- * @param string $var
- * @return $this
- */
- public function setPhone($var)
- {
- GPBUtil::checkString($var, True);
- $this->phone = $var;
- return $this;
- }
- }
|