123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165 |
- <?php
- /**
- * dingtalk API: dingtalk.oapi.rhino.mos.exec.track.unbind request
- *
- * @author auto create
- * @since 1.0, 2020.07.03
- */
- class OapiRhinoMosExecTrackUnbindRequest
- {
- /**
- * 实体ID列表
- **/
- private $entities;
-
- /**
- * 实体类型
- **/
- private $entityType;
-
- /**
- * 订单ID
- **/
- private $orderId;
-
- /**
- * 租户ID
- **/
- private $tenantId;
-
- /**
- * 追踪ID
- **/
- private $trackId;
-
- /**
- * 追踪类型,吊挂或才RF
- **/
- private $trackType;
-
- /**
- * 预留参数
- **/
- private $userid;
-
- /**
- * 工位
- **/
- private $workstationCode;
-
- private $apiParas = array();
-
- public function setEntities($entities)
- {
- $this->entities = $entities;
- $this->apiParas["entities"] = $entities;
- }
- public function getEntities()
- {
- return $this->entities;
- }
- public function setEntityType($entityType)
- {
- $this->entityType = $entityType;
- $this->apiParas["entity_type"] = $entityType;
- }
- public function getEntityType()
- {
- return $this->entityType;
- }
- public function setOrderId($orderId)
- {
- $this->orderId = $orderId;
- $this->apiParas["order_id"] = $orderId;
- }
- public function getOrderId()
- {
- return $this->orderId;
- }
- public function setTenantId($tenantId)
- {
- $this->tenantId = $tenantId;
- $this->apiParas["tenant_id"] = $tenantId;
- }
- public function getTenantId()
- {
- return $this->tenantId;
- }
- public function setTrackId($trackId)
- {
- $this->trackId = $trackId;
- $this->apiParas["track_id"] = $trackId;
- }
- public function getTrackId()
- {
- return $this->trackId;
- }
- public function setTrackType($trackType)
- {
- $this->trackType = $trackType;
- $this->apiParas["track_type"] = $trackType;
- }
- public function getTrackType()
- {
- return $this->trackType;
- }
- public function setUserid($userid)
- {
- $this->userid = $userid;
- $this->apiParas["userid"] = $userid;
- }
- public function getUserid()
- {
- return $this->userid;
- }
- public function setWorkstationCode($workstationCode)
- {
- $this->workstationCode = $workstationCode;
- $this->apiParas["workstation_code"] = $workstationCode;
- }
- public function getWorkstationCode()
- {
- return $this->workstationCode;
- }
- public function getApiMethodName()
- {
- return "dingtalk.oapi.rhino.mos.exec.track.unbind";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->entities,"entities");
- RequestCheckUtil::checkMaxListSize($this->entities,500,"entities");
- RequestCheckUtil::checkNotNull($this->entityType,"entityType");
- RequestCheckUtil::checkNotNull($this->tenantId,"tenantId");
- RequestCheckUtil::checkNotNull($this->trackId,"trackId");
- RequestCheckUtil::checkNotNull($this->trackType,"trackType");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|