| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?php
- namespace BsPaySdk\request;
- use BsPaySdk\enums\FunctionCodeEnum;
- /**
- * 创建支付分订单
- *
- * @author sdk-generator
- * @Description
- */
- class V2TradePayscoreServiceorderCreateRequest extends BaseRequest
- {
- /**
- * 汇付商户号
- */
- private $huifuId;
- /**
- * 请求日期
- */
- private $reqDate;
- /**
- * 商户申请单号
- */
- private $reqSeqId;
- /**
- * 服务信息
- */
- private $serviceIntroduction;
- /**
- * 服务风险金
- */
- private $riskFund;
- /**
- * 服务时间
- */
- private $timeRange;
- /**
- * 商户回调地址
- */
- private $notifyUrl;
- public function getFunctionCode() {
- return FunctionCodeEnum::$V2_TRADE_PAYSCORE_SERVICEORDER_CREATE;
- }
- public function getHuifuId() {
- return $this->huifuId;
- }
- public function setHuifuId($huifuId) {
- $this->huifuId = $huifuId;
- }
- public function getReqDate() {
- return $this->reqDate;
- }
- public function setReqDate($reqDate) {
- $this->reqDate = $reqDate;
- }
- public function getReqSeqId() {
- return $this->reqSeqId;
- }
- public function setReqSeqId($reqSeqId) {
- $this->reqSeqId = $reqSeqId;
- }
- public function getServiceIntroduction() {
- return $this->serviceIntroduction;
- }
- public function setServiceIntroduction($serviceIntroduction) {
- $this->serviceIntroduction = $serviceIntroduction;
- }
- public function getRiskFund() {
- return $this->riskFund;
- }
- public function setRiskFund($riskFund) {
- $this->riskFund = $riskFund;
- }
- public function getTimeRange() {
- return $this->timeRange;
- }
- public function setTimeRange($timeRange) {
- $this->timeRange = $timeRange;
- }
- public function getNotifyUrl() {
- return $this->notifyUrl;
- }
- public function setNotifyUrl($notifyUrl) {
- $this->notifyUrl = $notifyUrl;
- }
- }
|