| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?php
- /**
- * TOP API: alibaba.alihealth.drugtrace.top.yljg.listupout.detail request
- *
- * @author auto create
- * @since 1.0, 2025.08.14
- */
- class AlibabaAlihealthDrugtraceTopYljgListupoutDetailRequest
- {
- /**
- * 委托企业refEntId【发货企业和委托企业必须填写一个,否则查询不出来数据】
- **/
- private $assRefEntId;
-
- /**
- * 单据编码
- **/
- private $billCode;
-
- /**
- * 发货企业refEntId【发货企业和委托企业必须填写一个,否则查询不出来数据】
- **/
- private $fromRefUserId;
-
- /**
- * 企业id
- **/
- private $refEntId;
-
- /**
- * 收货企业refEntId
- **/
- private $toRefUserId;
-
- private $apiParas = array();
-
- public function setAssRefEntId($assRefEntId)
- {
- $this->assRefEntId = $assRefEntId;
- $this->apiParas["ass_ref_ent_id"] = $assRefEntId;
- }
- public function getAssRefEntId()
- {
- return $this->assRefEntId;
- }
- public function setBillCode($billCode)
- {
- $this->billCode = $billCode;
- $this->apiParas["bill_code"] = $billCode;
- }
- public function getBillCode()
- {
- return $this->billCode;
- }
- public function setFromRefUserId($fromRefUserId)
- {
- $this->fromRefUserId = $fromRefUserId;
- $this->apiParas["from_ref_user_id"] = $fromRefUserId;
- }
- public function getFromRefUserId()
- {
- return $this->fromRefUserId;
- }
- public function setRefEntId($refEntId)
- {
- $this->refEntId = $refEntId;
- $this->apiParas["ref_ent_id"] = $refEntId;
- }
- public function getRefEntId()
- {
- return $this->refEntId;
- }
- public function setToRefUserId($toRefUserId)
- {
- $this->toRefUserId = $toRefUserId;
- $this->apiParas["to_ref_user_id"] = $toRefUserId;
- }
- public function getToRefUserId()
- {
- return $this->toRefUserId;
- }
- public function getApiMethodName()
- {
- return "alibaba.alihealth.drugtrace.top.yljg.listupout.detail";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->billCode,"billCode");
- RequestCheckUtil::checkNotNull($this->refEntId,"refEntId");
- RequestCheckUtil::checkNotNull($this->toRefUserId,"toRefUserId");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|