123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.miniapp.deploypackage.query request
- *
- * @author auto create
- * @since 1.0, 2020.07.28
- */
- class OapiMiniappDeploypackageQueryRequest
- {
- /**
- * 查询参数
- **/
- private $modelKey;
-
- private $apiParas = array();
-
- public function setModelKey($modelKey)
- {
- $this->modelKey = $modelKey;
- $this->apiParas["model_key"] = $modelKey;
- }
- public function getModelKey()
- {
- return $this->modelKey;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.miniapp.deploypackage.query";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->modelKey,"modelKey");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|