| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <?php
- /**
- * TOP API: taobao.openim.userservice.get request
- *
- * @author auto create
- * @since 1.0, 2016.03.07
- */
- class OpenimUserserviceGetRequest
- {
- /**
- * 某一天
- **/
- private $date;
-
- /**
- * 当前页
- **/
- private $pageNo;
-
- /**
- * 页面记录数
- **/
- private $pageSize;
-
- private $apiParas = array();
-
- public function setDate($date)
- {
- $this->date = $date;
- $this->apiParas["date"] = $date;
- }
- public function getDate()
- {
- return $this->date;
- }
- public function setPageNo($pageNo)
- {
- $this->pageNo = $pageNo;
- $this->apiParas["page_no"] = $pageNo;
- }
- public function getPageNo()
- {
- return $this->pageNo;
- }
- public function setPageSize($pageSize)
- {
- $this->pageSize = $pageSize;
- $this->apiParas["page_size"] = $pageSize;
- }
- public function getPageSize()
- {
- return $this->pageSize;
- }
- public function getApiMethodName()
- {
- return "taobao.openim.userservice.get";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->date,"date");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|