| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- <?php
- /**
- * TOP API: alibaba.alihealth.drugtrace.top.lsyd.listupout request
- *
- * @author auto create
- * @since 1.0, 2024.11.15
- */
- class AlibabaAlihealthDrugtraceTopLsydListupoutRequest
- {
- /**
- * 开始日期(不写时分秒)
- **/
- private $beginDate;
-
- /**
- * 单据号
- **/
- private $billCode;
-
- /**
- * 单据类型
- **/
- private $billType;
-
- /**
- * 药品ID
- **/
- private $drugEntBaseInfoId;
-
- /**
- * 结束日期(不写时分秒)
- **/
- private $endDate;
-
- /**
- * 发货单位ent_id
- **/
- private $fromUserId;
-
- /**
- * 页码
- **/
- private $page;
-
- /**
- * 页大小
- **/
- private $pageSize;
-
- /**
- * 药品类型
- **/
- private $physicType;
-
- /**
- * 生产批号
- **/
- private $produceBatchNo;
-
- /**
- * 企业ID
- **/
- private $refEntId;
-
- /**
- * 状态
- **/
- private $status;
-
- private $apiParas = array();
-
- public function setBeginDate($beginDate)
- {
- $this->beginDate = $beginDate;
- $this->apiParas["begin_date"] = $beginDate;
- }
- public function getBeginDate()
- {
- return $this->beginDate;
- }
- public function setBillCode($billCode)
- {
- $this->billCode = $billCode;
- $this->apiParas["bill_code"] = $billCode;
- }
- public function getBillCode()
- {
- return $this->billCode;
- }
- public function setBillType($billType)
- {
- $this->billType = $billType;
- $this->apiParas["bill_type"] = $billType;
- }
- public function getBillType()
- {
- return $this->billType;
- }
- public function setDrugEntBaseInfoId($drugEntBaseInfoId)
- {
- $this->drugEntBaseInfoId = $drugEntBaseInfoId;
- $this->apiParas["drug_ent_base_info_id"] = $drugEntBaseInfoId;
- }
- public function getDrugEntBaseInfoId()
- {
- return $this->drugEntBaseInfoId;
- }
- public function setEndDate($endDate)
- {
- $this->endDate = $endDate;
- $this->apiParas["end_date"] = $endDate;
- }
- public function getEndDate()
- {
- return $this->endDate;
- }
- public function setFromUserId($fromUserId)
- {
- $this->fromUserId = $fromUserId;
- $this->apiParas["from_user_id"] = $fromUserId;
- }
- public function getFromUserId()
- {
- return $this->fromUserId;
- }
- 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 setPhysicType($physicType)
- {
- $this->physicType = $physicType;
- $this->apiParas["physic_type"] = $physicType;
- }
- public function getPhysicType()
- {
- return $this->physicType;
- }
- public function setProduceBatchNo($produceBatchNo)
- {
- $this->produceBatchNo = $produceBatchNo;
- $this->apiParas["produce_batch_no"] = $produceBatchNo;
- }
- public function getProduceBatchNo()
- {
- return $this->produceBatchNo;
- }
- public function setRefEntId($refEntId)
- {
- $this->refEntId = $refEntId;
- $this->apiParas["ref_ent_id"] = $refEntId;
- }
- public function getRefEntId()
- {
- return $this->refEntId;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- $this->apiParas["status"] = $status;
- }
- public function getStatus()
- {
- return $this->status;
- }
- public function getApiMethodName()
- {
- return "alibaba.alihealth.drugtrace.top.lsyd.listupout";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->beginDate,"beginDate");
- RequestCheckUtil::checkNotNull($this->endDate,"endDate");
- RequestCheckUtil::checkNotNull($this->page,"page");
- RequestCheckUtil::checkNotNull($this->pageSize,"pageSize");
- RequestCheckUtil::checkNotNull($this->refEntId,"refEntId");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|