| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <?php
- /**
- * TOP API: alibaba.alihealth.ent.yzw.hasuploaddrugreport request
- *
- * @author auto create
- * @since 1.0, 2024.04.02
- */
- class AlibabaAlihealthEntYzwHasuploaddrugreportRequest
- {
- /**
- * 批次号
- **/
- private $batchNo;
-
- /**
- * 药品ID
- **/
- private $drugEntBaseInfoId;
-
- /**
- * 企业ID
- **/
- private $refEntId;
-
- private $apiParas = array();
-
- public function setBatchNo($batchNo)
- {
- $this->batchNo = $batchNo;
- $this->apiParas["batch_no"] = $batchNo;
- }
- public function getBatchNo()
- {
- return $this->batchNo;
- }
- public function setDrugEntBaseInfoId($drugEntBaseInfoId)
- {
- $this->drugEntBaseInfoId = $drugEntBaseInfoId;
- $this->apiParas["drug_ent_base_info_id"] = $drugEntBaseInfoId;
- }
- public function getDrugEntBaseInfoId()
- {
- return $this->drugEntBaseInfoId;
- }
- 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.ent.yzw.hasuploaddrugreport";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->batchNo,"batchNo");
- RequestCheckUtil::checkNotNull($this->drugEntBaseInfoId,"drugEntBaseInfoId");
- RequestCheckUtil::checkNotNull($this->refEntId,"refEntId");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|