项目初始化

This commit is contained in:
2025-09-22 18:52:07 +08:00
commit c4fca82443
5192 changed files with 866921 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
<?php
namespace Yzh\Model\Payment;
use Yzh\Model\BaseRequest;
/**
* 订单支付状态回调通知
* Class NotifyOrderRequest
*/
class NotifyOrderRequest extends BaseRequest
{
/**
* 通知 ID
* @var string
*/
public $notify_id;
/**
* 通知时间
* @var string
*/
public $notify_time;
/**
* 返回数据
* @var NotifyOrderData
*/
public $data;
public function __construct($params = array())
{
foreach (array_keys(get_object_vars($this)) as $property) {
if (isset($params[$property])) {
$this->{$property} = $params[$property];
}
}
}
}