| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- /**
- * TOP API: alibaba.alihealth.synergy.yzw.signednotstampedbill.query request
- *
- * @author auto create
- * @since 1.0, 2025.10.22
- */
- class AlibabaAlihealthSynergyYzwSignednotstampedbillQueryRequest
- {
- /**
- * 上游出库单开始日期(最大查询区间一月)
- **/
- private $beginTime;
-
- /**
- * 上游出库单结束日期(最大查询区间一月)
- **/
- private $endTime;
-
- /**
- * 分页对象
- **/
- private $page;
-
- /**
- * 企业(本企业id)
- **/
- private $refEntId;
-
- private $apiParas = array();
-
- public function setBeginTime($beginTime)
- {
- $this->beginTime = $beginTime;
- $this->apiParas["begin_time"] = $beginTime;
- }
- public function getBeginTime()
- {
- return $this->beginTime;
- }
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- $this->apiParas["end_time"] = $endTime;
- }
- public function getEndTime()
- {
- return $this->endTime;
- }
- public function setPage($page)
- {
- $this->page = $page;
- $this->apiParas["page"] = $page;
- }
- public function getPage()
- {
- return $this->page;
- }
- public function setRefEntId($refEntId)
- {
- $this->refEntId = $refEntId;
- $this->apiParas["ref_ent_id"] = $refEntId;
- }
- public function getRefEntId()
- {
- return $this->refEntId;
- }
- public function getApiMethodName()
- {
- return "alibaba.alihealth.synergy.yzw.signednotstampedbill.query";
- }
-
- public function getApiParas()
- {
- return $this->apiParas;
- }
-
- public function check()
- {
-
- RequestCheckUtil::checkNotNull($this->beginTime,"beginTime");
- RequestCheckUtil::checkNotNull($this->endTime,"endTime");
- RequestCheckUtil::checkNotNull($this->refEntId,"refEntId");
- }
-
- public function putOtherTextParam($key, $value) {
- $this->apiParas[$key] = $value;
- $this->$key = $value;
- }
- }
|