proto.api.AreaLevelEnt */ class AreaLevelEnt extends \Google\Protobuf\Internal\Message { /** * 区域信息 * 省编号 * * Generated from protobuf field string province_code = 1; */ protected $province_code = ''; /** * 省名称 * * Generated from protobuf field string province_name = 2; */ protected $province_name = ''; /** * 市编号 * * Generated from protobuf field string city_code = 3; */ protected $city_code = ''; /** * 市名称 * * Generated from protobuf field string city_name = 4; */ protected $city_name = ''; /** * 区编号 * * Generated from protobuf field string area_code = 5; */ protected $area_code = ''; /** * 区名称 * * Generated from protobuf field string area_name = 6; */ protected $area_name = ''; /** * 地区code * * Generated from protobuf field string area_id = 7; */ protected $area_id = ''; /** * 子级区域 * * Generated from protobuf field repeated .proto.api.AreaLevelEnt children = 8; */ private $children; /** * Constructor. * * @param array $data { * Optional. Data for populating the Message object. * * @type string $province_code * 区域信息 * 省编号 * @type string $province_name * 省名称 * @type string $city_code * 市编号 * @type string $city_name * 市名称 * @type string $area_code * 区编号 * @type string $area_name * 区名称 * @type string $area_id * 地区code * @type array<\Proto\Api\AreaLevelEnt>|\Google\Protobuf\Internal\RepeatedField $children * 子级区域 * } */ public function __construct($data = NULL) { \GPBMetadata\Api\EntArea::initOnce(); parent::__construct($data); } /** * 区域信息 * 省编号 * * Generated from protobuf field string province_code = 1; * @return string */ public function getProvinceCode() { return $this->province_code; } /** * 区域信息 * 省编号 * * Generated from protobuf field string province_code = 1; * @param string $var * @return $this */ public function setProvinceCode($var) { GPBUtil::checkString($var, True); $this->province_code = $var; return $this; } /** * 省名称 * * Generated from protobuf field string province_name = 2; * @return string */ public function getProvinceName() { return $this->province_name; } /** * 省名称 * * Generated from protobuf field string province_name = 2; * @param string $var * @return $this */ public function setProvinceName($var) { GPBUtil::checkString($var, True); $this->province_name = $var; return $this; } /** * 市编号 * * Generated from protobuf field string city_code = 3; * @return string */ public function getCityCode() { return $this->city_code; } /** * 市编号 * * Generated from protobuf field string city_code = 3; * @param string $var * @return $this */ public function setCityCode($var) { GPBUtil::checkString($var, True); $this->city_code = $var; return $this; } /** * 市名称 * * Generated from protobuf field string city_name = 4; * @return string */ public function getCityName() { return $this->city_name; } /** * 市名称 * * Generated from protobuf field string city_name = 4; * @param string $var * @return $this */ public function setCityName($var) { GPBUtil::checkString($var, True); $this->city_name = $var; return $this; } /** * 区编号 * * Generated from protobuf field string area_code = 5; * @return string */ public function getAreaCode() { return $this->area_code; } /** * 区编号 * * Generated from protobuf field string area_code = 5; * @param string $var * @return $this */ public function setAreaCode($var) { GPBUtil::checkString($var, True); $this->area_code = $var; return $this; } /** * 区名称 * * Generated from protobuf field string area_name = 6; * @return string */ public function getAreaName() { return $this->area_name; } /** * 区名称 * * Generated from protobuf field string area_name = 6; * @param string $var * @return $this */ public function setAreaName($var) { GPBUtil::checkString($var, True); $this->area_name = $var; return $this; } /** * 地区code * * Generated from protobuf field string area_id = 7; * @return string */ public function getAreaId() { return $this->area_id; } /** * 地区code * * Generated from protobuf field string area_id = 7; * @param string $var * @return $this */ public function setAreaId($var) { GPBUtil::checkString($var, True); $this->area_id = $var; return $this; } /** * 子级区域 * * Generated from protobuf field repeated .proto.api.AreaLevelEnt children = 8; * @return \Google\Protobuf\Internal\RepeatedField */ public function getChildren() { return $this->children; } /** * 子级区域 * * Generated from protobuf field repeated .proto.api.AreaLevelEnt children = 8; * @param array<\Proto\Api\AreaLevelEnt>|\Google\Protobuf\Internal\RepeatedField $var * @return $this */ public function setChildren($var) { $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Proto\Api\AreaLevelEnt::class); $this->children = $arr; return $this; } }