123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.ddpaas.objectdata.query request
- *
- * @author auto create
- * @since 1.0, 2020.06.28
- */
- class OapiDdpaasObjectdataQueryRequest
- {
- /**
- * 钉钉PaaS 应用 ID
- **/
- private $appUuid;
-
- /**
- * 用户ID
- **/
- private $currentOperatorUserid;
-
- /**
- * 查询游标
- **/
- private $cursor;
-
- /**
- * 钉钉 PaaS 表单编号
- **/
- private $formCode;
-
- /**
- * 查询条件DSL
- **/
- private $queryDsl;
-
- /**
- * 分页限制
- **/
- private $size;
-
- private $apiParas = array();
-
- public function setAppUuid($appUuid)
- {
- $this->appUuid = $appUuid;
- $this->apiParas["app_uuid"] = $appUuid;
- }
- public function getAppUuid()
- {
- return $this->appUuid;
- }
- public function setCurrentOperatorUserid($currentOperatorUserid)
- {
- $this->currentOperatorUserid = $currentOperatorUserid;
- $this->apiParas["current_operator_userid"] = $currentOperatorUserid;
- }
- public function getCurrentOperatorUserid()
- {
- return $this->currentOperatorUserid;
- }
- public function setCursor($cursor)
- {
- $this->cursor = $cursor;
- $this->apiParas["cursor"] = $cursor;
- }
- public function getCursor()
- {
- return $this->cursor;
- }
- public function setFormCode($formCode)
- {
- $this->formCode = $formCode;
- $this->apiParas["form_code"] = $formCode;
- }
- public function getFormCode()
- {
- return $this->formCode;
- }
- public function setQueryDsl($queryDsl)
- {
- $this->queryDsl = $queryDsl;
- $this->apiParas["query_dsl"] = $queryDsl;
- }
- public function getQueryDsl()
- {
- return $this->queryDsl;
- }
- public function setSize($size)
- {
- $this->size = $size;
- $this->apiParas["size"] = $size;
- }
- public function getSize()
- {
- return $this->size;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.ddpaas.objectdata.query";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->appUuid,"appUuid");
- RequestCheckUtil::checkNotNull($this->formCode,"formCode");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|