You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
409 B
PHP
20 lines
409 B
PHP
<?php
|
|
|
|
namespace App\Helper\Baofu;
|
|
|
|
class PcList
|
|
{
|
|
private static $list = [
|
|
'apply' => [
|
|
'description' => '企业实名开户',
|
|
'url' => '/api/merchant/v1/apply',
|
|
'signParams' => 'orgNo|terminalNo|loginNo|requestDate|email'
|
|
],
|
|
];
|
|
|
|
public static function get($pcName)
|
|
{
|
|
return self::$list[$pcName] ?: null;
|
|
}
|
|
}
|