AlibabaAlihealthDrugMscGetentinfolistRequest.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?php
  2. /**
  3. * TOP API: alibaba.alihealth.drug.msc.getentinfolist request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2025.09.08
  7. */
  8. class AlibabaAlihealthDrugMscGetentinfolistRequest
  9. {
  10. /**
  11. * 查询企业信息参数
  12. **/
  13. private $queryParam;
  14. /**
  15. * refEntId
  16. **/
  17. private $refEntId;
  18. private $apiParas = array();
  19. public function setQueryParam($queryParam)
  20. {
  21. $this->queryParam = $queryParam;
  22. $this->apiParas["query_param"] = $queryParam;
  23. }
  24. public function getQueryParam()
  25. {
  26. return $this->queryParam;
  27. }
  28. public function setRefEntId($refEntId)
  29. {
  30. $this->refEntId = $refEntId;
  31. $this->apiParas["ref_ent_id"] = $refEntId;
  32. }
  33. public function getRefEntId()
  34. {
  35. return $this->refEntId;
  36. }
  37. public function getApiMethodName()
  38. {
  39. return "alibaba.alihealth.drug.msc.getentinfolist";
  40. }
  41. public function getApiParas()
  42. {
  43. return $this->apiParas;
  44. }
  45. public function check()
  46. {
  47. RequestCheckUtil::checkNotNull($this->refEntId,"refEntId");
  48. }
  49. public function putOtherTextParam($key, $value) {
  50. $this->apiParas[$key] = $value;
  51. $this->$key = $value;
  52. }
  53. }