| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- <?php
- /**
- * TOP API: alibaba.alihealth.synergy.yzw.savedrugreportbyhttp request
- *
- * @author auto create
- * @since 1.0, 2025.10.22
- */
- class AlibabaAlihealthSynergyYzwSavedrugreportbyhttpRequest
- {
- /**
- * 批次号
- **/
- private $batchNo;
-
- /**
- * 药品ID
- **/
- private $drugEntBaseInfoId;
-
- /**
- * 报告文件
- **/
- private $files;
-
- /**
- * 是否要显示日期
- **/
- private $noDate;
-
- /**
- * X坐标
- **/
- private $positionX;
-
- /**
- * Y坐标
- **/
- private $positionY;
-
- /**
- * 生产日期
- **/
- private $produceDate;
-
- /**
- * 企业ID
- **/
- private $refEntId;
-
- /**
- * 报告日期
- **/
- private $reportDate;
-
- /**
- * 药检报告号
- **/
- private $reportNo;
-
- /**
- * 印章名称
- **/
- private $sealName;
-
- /**
- * 用户id(三方系统标识)
- **/
- private $userId;
-
- 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 setFiles($files)
- {
- $this->files = $files;
- $this->apiParas["files"] = $files;
- }
- public function getFiles()
- {
- return $this->files;
- }
- public function setNoDate($noDate)
- {
- $this->noDate = $noDate;
- $this->apiParas["no_date"] = $noDate;
- }
- public function getNoDate()
- {
- return $this->noDate;
- }
- public function setPositionX($positionX)
- {
- $this->positionX = $positionX;
- $this->apiParas["position_x"] = $positionX;
- }
- public function getPositionX()
- {
- return $this->positionX;
- }
- public function setPositionY($positionY)
- {
- $this->positionY = $positionY;
- $this->apiParas["position_y"] = $positionY;
- }
- public function getPositionY()
- {
- return $this->positionY;
- }
- public function setProduceDate($produceDate)
- {
- $this->produceDate = $produceDate;
- $this->apiParas["produce_date"] = $produceDate;
- }
- public function getProduceDate()
- {
- return $this->produceDate;
- }
- public function setRefEntId($refEntId)
- {
- $this->refEntId = $refEntId;
- $this->apiParas["ref_ent_id"] = $refEntId;
- }
- public function getRefEntId()
- {
- return $this->refEntId;
- }
- public function setReportDate($reportDate)
- {
- $this->reportDate = $reportDate;
- $this->apiParas["report_date"] = $reportDate;
- }
- public function getReportDate()
- {
- return $this->reportDate;
- }
- public function setReportNo($reportNo)
- {
- $this->reportNo = $reportNo;
- $this->apiParas["report_no"] = $reportNo;
- }
- public function getReportNo()
- {
- return $this->reportNo;
- }
- public function setSealName($sealName)
- {
- $this->sealName = $sealName;
- $this->apiParas["seal_name"] = $sealName;
- }
- public function getSealName()
- {
- return $this->sealName;
- }
- public function setUserId($userId)
- {
- $this->userId = $userId;
- $this->apiParas["user_id"] = $userId;
- }
- public function getUserId()
- {
- return $this->userId;
- }
- public function getApiMethodName()
- {
- return "alibaba.alihealth.synergy.yzw.savedrugreportbyhttp";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->batchNo,"batchNo");
- RequestCheckUtil::checkNotNull($this->drugEntBaseInfoId,"drugEntBaseInfoId");
- RequestCheckUtil::checkNotNull($this->refEntId,"refEntId");
- RequestCheckUtil::checkNotNull($this->userId,"userId");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|