12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- namespace BsPaySdk\request;
- use BsPaySdk\enums\FunctionCodeEnum;
- class V2TradeBatchtranslogQueryRequest extends BaseRequest
- {
-
- private $huifuId;
-
- private $beginDate;
-
- private $endDate;
- public function getFunctionCode() {
- return FunctionCodeEnum::$V2_TRADE_BATCHTRANSLOG_QUERY;
- }
- public function getHuifuId() {
- return $this->huifuId;
- }
- public function setHuifuId($huifuId) {
- $this->huifuId = $huifuId;
- }
- public function getBeginDate() {
- return $this->beginDate;
- }
- public function setBeginDate($beginDate) {
- $this->beginDate = $beginDate;
- }
- public function getEndDate() {
- return $this->endDate;
- }
- public function setEndDate($endDate) {
- $this->endDate = $endDate;
- }
- }
|