| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?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.RequestLandUp</code>
- */
- class RequestLandUp extends \Google\Protobuf\Internal\Message
- {
- /**
- *土地编号
- *
- * Generated from protobuf field <code>int64 land_id = 1;</code>
- */
- protected $land_id = 0;
- /**
- * Constructor.
- *
- * @param array $data {
- * Optional. Data for populating the Message object.
- *
- * @type int|string $land_id
- * 土地编号
- * }
- */
- public function __construct($data = NULL) {
- \GPBMetadata\Proto\Game::initOnce();
- parent::__construct($data);
- }
- /**
- *土地编号
- *
- * Generated from protobuf field <code>int64 land_id = 1;</code>
- * @return int|string
- */
- public function getLandId()
- {
- return $this->land_id;
- }
- /**
- *土地编号
- *
- * Generated from protobuf field <code>int64 land_id = 1;</code>
- * @param int|string $var
- * @return $this
- */
- public function setLandId($var)
- {
- GPBUtil::checkInt64($var);
- $this->land_id = $var;
- return $this;
- }
- }
- // Adding a class alias for backwards compatibility with the previous class name.
- class_alias(RequestLandUp::class, \Uraus\Kku\Request_RequestLandUp::class);
|