123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.checkin.record.get request
- *
- * @author auto create
- * @since 1.0, 2020.07.09
- */
- class OapiCheckinRecordGetRequest
- {
- /**
- * 分页查询的游标,最开始可以传0
- **/
- private $cursor;
-
- /**
- * 截止时间,单位毫秒。如果是取1个人的数据,时间范围最大到10天,如果是取多个人的数据,时间范围最大1天。
- **/
- private $endTime;
-
- /**
- * 分页查询的每页大小,最大100
- **/
- private $size;
-
- /**
- * 起始时间,单位毫秒
- **/
- private $startTime;
-
- /**
- * 需要查询的用户列表
- **/
- private $useridList;
-
- private $apiParas = array();
-
- public function setCursor($cursor)
- {
- $this->cursor = $cursor;
- $this->apiParas["cursor"] = $cursor;
- }
- public function getCursor()
- {
- return $this->cursor;
- }
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- $this->apiParas["end_time"] = $endTime;
- }
- public function getEndTime()
- {
- return $this->endTime;
- }
- public function setSize($size)
- {
- $this->size = $size;
- $this->apiParas["size"] = $size;
- }
- public function getSize()
- {
- return $this->size;
- }
- public function setStartTime($startTime)
- {
- $this->startTime = $startTime;
- $this->apiParas["start_time"] = $startTime;
- }
- public function getStartTime()
- {
- return $this->startTime;
- }
- public function setUseridList($useridList)
- {
- $this->useridList = $useridList;
- $this->apiParas["userid_list"] = $useridList;
- }
- public function getUseridList()
- {
- return $this->useridList;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.checkin.record.get";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->cursor,"cursor");
- RequestCheckUtil::checkNotNull($this->endTime,"endTime");
- RequestCheckUtil::checkNotNull($this->size,"size");
- RequestCheckUtil::checkNotNull($this->startTime,"startTime");
- RequestCheckUtil::checkNotNull($this->useridList,"useridList");
- RequestCheckUtil::checkMaxListSize($this->useridList,10,"useridList");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|