V2TradeBatchtranslogQueryRequest.php 990 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. namespace BsPaySdk\request;
  3. use BsPaySdk\enums\FunctionCodeEnum;
  4. /**
  5. * 批量出金交易查询
  6. *
  7. * @author sdk-generator
  8. * @Description
  9. */
  10. class V2TradeBatchtranslogQueryRequest extends BaseRequest
  11. {
  12. /**
  13. * 商户号
  14. */
  15. private $huifuId;
  16. /**
  17. * 开始日期
  18. */
  19. private $beginDate;
  20. /**
  21. * 结束日期
  22. */
  23. private $endDate;
  24. public function getFunctionCode() {
  25. return FunctionCodeEnum::$V2_TRADE_BATCHTRANSLOG_QUERY;
  26. }
  27. public function getHuifuId() {
  28. return $this->huifuId;
  29. }
  30. public function setHuifuId($huifuId) {
  31. $this->huifuId = $huifuId;
  32. }
  33. public function getBeginDate() {
  34. return $this->beginDate;
  35. }
  36. public function setBeginDate($beginDate) {
  37. $this->beginDate = $beginDate;
  38. }
  39. public function getEndDate() {
  40. return $this->endDate;
  41. }
  42. public function setEndDate($endDate) {
  43. $this->endDate = $endDate;
  44. }
  45. }