123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.attendance.shift.updatepunches request
- *
- * @author auto create
- * @since 1.0, 2019.12.05
- */
- class OapiAttendanceShiftUpdatepunchesRequest
- {
- /**
- * 操作者userId
- **/
- private $opUserId;
-
- /**
- * 系统自动生成
- **/
- private $punches;
-
- /**
- * 班次id
- **/
- private $shiftId;
-
- private $apiParas = array();
-
- public function setOpUserId($opUserId)
- {
- $this->opUserId = $opUserId;
- $this->apiParas["op_user_id"] = $opUserId;
- }
- public function getOpUserId()
- {
- return $this->opUserId;
- }
- public function setPunches($punches)
- {
- $this->punches = $punches;
- $this->apiParas["punches"] = $punches;
- }
- public function getPunches()
- {
- return $this->punches;
- }
- public function setShiftId($shiftId)
- {
- $this->shiftId = $shiftId;
- $this->apiParas["shift_id"] = $shiftId;
- }
- public function getShiftId()
- {
- return $this->shiftId;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.attendance.shift.updatepunches";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->opUserId,"opUserId");
- RequestCheckUtil::checkNotNull($this->shiftId,"shiftId");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|