| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- /**
- * TOP API: alibaba.alihealth.drugtrace.top.lsyd.getkeyflagdruginfo.downloadurl request
- *
- * @author auto create
- * @since 1.0, 2024.11.14
- */
- class AlibabaAlihealthDrugtraceTopLsydGetkeyflagdruginfoDownloadurlRequest
- {
- /**
- * 调用接口的企业ID
- **/
- private $refEntId;
-
- private $apiParas = array();
-
- public function setRefEntId($refEntId)
- {
- $this->refEntId = $refEntId;
- $this->apiParas["ref_ent_id"] = $refEntId;
- }
- public function getRefEntId()
- {
- return $this->refEntId;
- }
- public function getApiMethodName()
- {
- return "alibaba.alihealth.drugtrace.top.lsyd.getkeyflagdruginfo.downloadurl";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->refEntId,"refEntId");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|