You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.0 KiB
64 lines
1.0 KiB
<?php
|
|
/**
|
|
* dingtalk API: dingtalk.oapi.v2.department.get request
|
|
*
|
|
* @author auto create
|
|
* @since 1.0, 2021.08.25
|
|
*/
|
|
class OapiV2DepartmentGetRequest
|
|
{
|
|
/**
|
|
* 部门id,根部门ID为1
|
|
**/
|
|
private $deptId;
|
|
|
|
/**
|
|
* 通讯录语言(默认zh_CN)
|
|
**/
|
|
private $language;
|
|
|
|
private $apiParas = array();
|
|
|
|
public function setDeptId($deptId)
|
|
{
|
|
$this->deptId = $deptId;
|
|
$this->apiParas["dept_id"] = $deptId;
|
|
}
|
|
|
|
public function getDeptId()
|
|
{
|
|
return $this->deptId;
|
|
}
|
|
|
|
public function setLanguage($language)
|
|
{
|
|
$this->language = $language;
|
|
$this->apiParas["language"] = $language;
|
|
}
|
|
|
|
public function getLanguage()
|
|
{
|
|
return $this->language;
|
|
}
|
|
|
|
public function getApiMethodName()
|
|
{
|
|
return "dingtalk.oapi.v2.department.get";
|
|
}
|
|
|
|
public function getApiParas()
|
|
{
|
|
return $this->apiParas;
|
|
}
|
|
|
|
public function check()
|
|
{
|
|
|
|
RequestCheckUtil::checkNotNull($this->deptId,"deptId");
|
|
}
|
|
|
|
public function putOtherTextParam($key, $value) {
|
|
$this->apiParas[$key] = $value;
|
|
$this->$key = $value;
|
|
}
|
|
}
|
|
|