| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?php
- /**
- * TOP API: alibaba.alihealth.drug.msc.synonymauths request
- *
- * @author auto create
- * @since 1.0, 2023.12.14
- */
- class AlibabaAlihealthDrugMscSynonymauthsRequest
- {
- /**
- * 企业名称
- **/
- private $entName;
-
- /**
- * 页面大小
- **/
- private $page;
-
- /**
- * 页码
- **/
- private $pageSize;
-
- /**
- * 调用企业id
- **/
- private $refEntId;
-
- /**
- * 货主自定义编号
- **/
- private $synOwnEntId;
-
- private $apiParas = array();
-
- public function setEntName($entName)
- {
- $this->entName = $entName;
- $this->apiParas["ent_name"] = $entName;
- }
- public function getEntName()
- {
- return $this->entName;
- }
- 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 setSynOwnEntId($synOwnEntId)
- {
- $this->synOwnEntId = $synOwnEntId;
- $this->apiParas["syn_own_ent_id"] = $synOwnEntId;
- }
- public function getSynOwnEntId()
- {
- return $this->synOwnEntId;
- }
- public function getApiMethodName()
- {
- return "alibaba.alihealth.drug.msc.synonymauths";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- 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;
- }
- }
|