| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <?php
- /**
- * TOP API: alibaba.alihealth.synergy.yzw.querydrugbatchreport request
- *
- * @author auto create
- * @since 1.0, 2025.10.22
- */
- class AlibabaAlihealthSynergyYzwQuerydrugbatchreportRequest
- {
- /**
- * 批次号
- **/
- private $batchNo;
-
- /**
- * 报告创建开始时间
- **/
- private $beginTime;
-
- /**
- * 药品id
- **/
- private $drugId;
-
- /**
- * 报告创建结束时间
- **/
- private $endTime;
-
- /**
- * 页码
- **/
- private $page;
-
- /**
- * 页的大小
- **/
- private $pageSize;
-
- /**
- * 报告上传企业refENtId
- **/
- private $refEntId;
-
- /**
- * 报告id
- **/
- private $reportId;
-
- private $apiParas = array();
-
- public function setBatchNo($batchNo)
- {
- $this->batchNo = $batchNo;
- $this->apiParas["batch_no"] = $batchNo;
- }
- public function getBatchNo()
- {
- return $this->batchNo;
- }
- public function setBeginTime($beginTime)
- {
- $this->beginTime = $beginTime;
- $this->apiParas["begin_time"] = $beginTime;
- }
- public function getBeginTime()
- {
- return $this->beginTime;
- }
- public function setDrugId($drugId)
- {
- $this->drugId = $drugId;
- $this->apiParas["drug_id"] = $drugId;
- }
- public function getDrugId()
- {
- return $this->drugId;
- }
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- $this->apiParas["end_time"] = $endTime;
- }
- public function getEndTime()
- {
- return $this->endTime;
- }
- public function setPage($page)
- {
- $this->page = $page;
- $this->apiParas["page"] = $page;
- }
- public function getPage()
- {
- return $this->page;
- }
- public function setPageSize($pageSize)
- {
- $this->pageSize = $pageSize;
- $this->apiParas["page_size"] = $pageSize;
- }
- public function getPageSize()
- {
- return $this->pageSize;
- }
- public function setRefEntId($refEntId)
- {
- $this->refEntId = $refEntId;
- $this->apiParas["ref_ent_id"] = $refEntId;
- }
- public function getRefEntId()
- {
- return $this->refEntId;
- }
- public function setReportId($reportId)
- {
- $this->reportId = $reportId;
- $this->apiParas["report_id"] = $reportId;
- }
- public function getReportId()
- {
- return $this->reportId;
- }
- public function getApiMethodName()
- {
- return "alibaba.alihealth.synergy.yzw.querydrugbatchreport";
- }
-
- 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;
- }
- }
|