代码初始化

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,37 @@
<?php
namespace Yzh\Model\Payment;
use Yzh\Model\BaseModel;
use Yzh\Model\ResponseDataInterface;
/**
* 重试挂起状态订单返回
* Class RetryOrderResponseData
*/
class RetryOrderResponseData extends BaseModel implements ResponseDataInterface
{
/**
* 请求标识
* @var string
*/
protected $ok;
/**
* 请求标识
* @var string $ok
*/
public function setOk($ok)
{
$this->ok = $ok;
}
/**
* 请求标识
* @return string
*/
public function getOk()
{
return $this->ok;
}
}