2022-08-19 19:48:37 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
namespace Yansongda\Pay\Plugin\Alipay\Data;
|
|
|
|
|
|
|
|
|
|
use Yansongda\Pay\Plugin\Alipay\GeneralPlugin;
|
|
|
|
|
|
2022-11-28 19:11:12 +08:00
|
|
|
/**
|
|
|
|
|
* @see https://opendocs.alipay.com/open/029i7e
|
|
|
|
|
*/
|
2022-08-19 19:48:37 +08:00
|
|
|
class BillEreceiptQueryPlugin extends GeneralPlugin
|
|
|
|
|
{
|
|
|
|
|
protected function getMethod(): string
|
|
|
|
|
{
|
|
|
|
|
return 'alipay.data.bill.ereceipt.query';
|
|
|
|
|
}
|
|
|
|
|
}
|