Files
midi-php/extend/Yzh/Model/Payment/ConfirmBatchOrderResponse.php

34 lines
629 B
PHP
Raw Permalink Normal View History

2025-08-13 10:43:56 +08:00
<?php
namespace Yzh\Model\Payment;
use Yzh\Model\BaseResponse;
use Yzh\Model\ResponseInterface;
/**
* 批次确认返回
* Class ConfirmBatchOrderResponse
*/
class ConfirmBatchOrderResponse extends BaseResponse implements ResponseInterface
{
/**
* 获取数据对象
* @return ConfirmBatchOrderResponseData
*/
public function getData()
{
return $this->data;
}
/**
* 设置数据对象
* @param array $data
* @return self
*/
public function setData($data)
{
$this->data = new ConfirmBatchOrderResponseData($data);
return $this;
}
}