增加聚合支付托管下单

This commit is contained in:
2024-04-01 17:07:53 +08:00
parent 899d816bc3
commit f8299b36aa
1291 changed files with 220566 additions and 169 deletions

View File

@@ -0,0 +1,39 @@
<?php
namespace Yeepay\Yop\Sdk\Service\Promtion\Model;
use Yeepay\Yop\Sdk\Model\Transform\BaseResponseUnMarshaller;
class RightsQueryConsumeRecordsResponseUnMarshaller extends BaseResponseUnMarshaller
{
/**
* @var RightsQueryConsumeRecordsResponseUnMarshaller
*/
private static $instance;
public static function __init()
{
self::$instance = new RightsQueryConsumeRecordsResponseUnMarshaller();
}
/**
* @return RightsQueryConsumeRecordsResponseUnMarshaller
*/
public static function getInstance()
{
return self::$instance;
}
/**
* @return RightsQueryConsumeRecordsResponse
*/
protected function getResponseInstance()
{
return new RightsQueryConsumeRecordsResponse();
}
}
RightsQueryConsumeRecordsResponseUnMarshaller::__init();