2026-08-26 18:30:49 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace app\expose\enum;
|
|
|
|
|
|
|
|
|
|
use app\expose\enum\builder\Enum;
|
|
|
|
|
|
|
|
|
|
class AlipayRsaModel extends Enum
|
|
|
|
|
{
|
|
|
|
|
const PUBLIC_CERT = [
|
|
|
|
|
'label' => '公钥证书',
|
|
|
|
|
'value' => 'public_cert',
|
|
|
|
|
];
|
|
|
|
|
const PUBLIC_KEY = [
|
|
|
|
|
'label' => '公钥',
|
|
|
|
|
'value' => 'public_key',
|
|
|
|
|
];
|
|
|
|
|
}
|