1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.hrm.employee.delresumerecord request
- *
- * @author auto create
- * @since 1.0, 2019.07.03
- */
- class OapiHrmEmployeeDelresumerecordRequest
- {
- /**
- * 成长记录唯一标识
- **/
- private $resumeId;
-
- /**
- * 员工userid
- **/
- private $userid;
-
- private $apiParas = array();
-
- public function setResumeId($resumeId)
- {
- $this->resumeId = $resumeId;
- $this->apiParas["resume_id"] = $resumeId;
- }
- public function getResumeId()
- {
- return $this->resumeId;
- }
- public function setUserid($userid)
- {
- $this->userid = $userid;
- $this->apiParas["userid"] = $userid;
- }
- public function getUserid()
- {
- return $this->userid;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.hrm.employee.delresumerecord";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->resumeId,"resumeId");
- RequestCheckUtil::checkNotNull($this->userid,"userid");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|