AlibabaAlihealthSynergyYzwBillSignedQueryRequest.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <?php
  2. /**
  3. * TOP API: alibaba.alihealth.synergy.yzw.bill.signed.query request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2025.10.22
  7. */
  8. class AlibabaAlihealthSynergyYzwBillSignedQueryRequest
  9. {
  10. /**
  11. * 单据签收开始时间(最大查询区间一月)
  12. **/
  13. private $beginTime;
  14. /**
  15. * 单据签收截止时间(最大查询区间一月)
  16. **/
  17. private $endTime;
  18. /**
  19. * 分页对象
  20. **/
  21. private $page;
  22. /**
  23. * 企业(本企业id)
  24. **/
  25. private $refEntId;
  26. private $apiParas = array();
  27. public function setBeginTime($beginTime)
  28. {
  29. $this->beginTime = $beginTime;
  30. $this->apiParas["begin_time"] = $beginTime;
  31. }
  32. public function getBeginTime()
  33. {
  34. return $this->beginTime;
  35. }
  36. public function setEndTime($endTime)
  37. {
  38. $this->endTime = $endTime;
  39. $this->apiParas["end_time"] = $endTime;
  40. }
  41. public function getEndTime()
  42. {
  43. return $this->endTime;
  44. }
  45. public function setPage($page)
  46. {
  47. $this->page = $page;
  48. $this->apiParas["page"] = $page;
  49. }
  50. public function getPage()
  51. {
  52. return $this->page;
  53. }
  54. public function setRefEntId($refEntId)
  55. {
  56. $this->refEntId = $refEntId;
  57. $this->apiParas["ref_ent_id"] = $refEntId;
  58. }
  59. public function getRefEntId()
  60. {
  61. return $this->refEntId;
  62. }
  63. public function getApiMethodName()
  64. {
  65. return "alibaba.alihealth.synergy.yzw.bill.signed.query";
  66. }
  67. public function getApiParas()
  68. {
  69. return $this->apiParas;
  70. }
  71. public function check()
  72. {
  73. RequestCheckUtil::checkNotNull($this->beginTime,"beginTime");
  74. RequestCheckUtil::checkNotNull($this->endTime,"endTime");
  75. RequestCheckUtil::checkNotNull($this->refEntId,"refEntId");
  76. }
  77. public function putOtherTextParam($key, $value) {
  78. $this->apiParas[$key] = $value;
  79. $this->$key = $value;
  80. }
  81. }