| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace ThirdParty\Urs\Dto;
- /**
- * 通讯密钥
- */
- class Credential extends \App\Module\ThirdParty\Dto\Credential
- {
- /**
- * 请求密钥
- *
- * @var string $apiKey
- */
- public $apiKey;
- /**
- * 生态ID
- *
- * @var int $ecologyId
- */
- public $ecologyId;
- public function getApiKey()
- {
- return $this->apiKey ?? "";
- }
- public function getEcologyId()
- {
- return $this->ecologyId ?? "1";
- }
- }
|