| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <?php
- # Generated by the protocol buffer compiler. DO NOT EDIT!
- # source: proto/game.proto
- namespace Uraus\Kku\Request;
- use Google\Protobuf\Internal\GPBType;
- use Google\Protobuf\Internal\RepeatedField;
- use Google\Protobuf\Internal\GPBUtil;
- /**
- * 登陆操作
- *
- * Generated from protobuf message <code>uraus.kku.Request.RequestPublicLogin</code>
- */
- class RequestPublicLogin extends \Google\Protobuf\Internal\Message
- {
- /**
- * 手机好吗
- *
- * Generated from protobuf field <code>string mobile = 1;</code>
- */
- protected $mobile = '';
- /**
- * 密码
- *
- * Generated from protobuf field <code>string password = 2;</code>
- */
- protected $password = '';
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type string $mobile
- * 手机好吗
- * @type string $password
- * 密码
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Proto\Game::initOnce();
- parent::__construct($data);
- }
- /**
- * 手机好吗
- *
- * Generated from protobuf field <code>string mobile = 1;</code>
- * @return string
- */
- public function getMobile()
- {
- return $this->mobile;
- }
- /**
- * 手机好吗
- *
- * Generated from protobuf field <code>string mobile = 1;</code>
- * @param string $var
- * @return $this
- */
- public function setMobile($var)
- {
- GPBUtil::checkString($var, True);
- $this->mobile = $var;
- return $this;
- }
- /**
- * 密码
- *
- * Generated from protobuf field <code>string password = 2;</code>
- * @return string
- */
- public function getPassword()
- {
- return $this->password;
- }
- /**
- * 密码
- *
- * Generated from protobuf field <code>string password = 2;</code>
- * @param string $var
- * @return $this
- */
- public function setPassword($var)
- {
- GPBUtil::checkString($var, True);
- $this->password = $var;
- return $this;
- }
- }
- // Adding a class alias for backwards compatibility with the previous class name.
- class_alias(RequestPublicLogin::class, \Uraus\Kku\Request_RequestPublicLogin::class);
|