1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.smartdevice.applyoutid request
- *
- * @author auto create
- * @since 1.0, 2019.07.01
- */
- class OapiSmartdeviceApplyoutidRequest
- {
- /**
- * 设备类型id
- **/
- private $devServId;
-
- /**
- * 设备序列号
- **/
- private $sn;
-
- private $apiParas = array();
-
- public function setDevServId($devServId)
- {
- $this->devServId = $devServId;
- $this->apiParas["dev_serv_id"] = $devServId;
- }
- public function getDevServId()
- {
- return $this->devServId;
- }
- public function setSn($sn)
- {
- $this->sn = $sn;
- $this->apiParas["sn"] = $sn;
- }
- public function getSn()
- {
- return $this->sn;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.smartdevice.applyoutid";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->devServId,"devServId");
- RequestCheckUtil::checkNotNull($this->sn,"sn");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|