代码初始化

This commit is contained in:
2025-08-07 20:21:47 +08:00
commit 50f3a2dbb0
2191 changed files with 374790 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<?php
namespace Yzh\Model\Payment;
use Yzh\Model\BaseResponse;
use Yzh\Model\ResponseInterface;
/**
* 批次下单返回
* Class CreateBatchOrderResponse
*/
class CreateBatchOrderResponse extends BaseResponse implements ResponseInterface
{
/**
* 获取数据对象
* @return CreateBatchOrderResponseData
*/
public function getData()
{
return $this->data;
}
/**
* 设置数据对象
* @param array $data
* @return self
*/
public function setData($data)
{
$this->data = new CreateBatchOrderResponseData($data);
return $this;
}
}