15 lines
215 B
PHP
15 lines
215 B
PHP
|
<?php
|
||
|
declare (strict_types=1);
|
||
|
|
||
|
namespace app\config;
|
||
|
|
||
|
/**
|
||
|
* @author canny
|
||
|
* @date 2023/11/20 14:58
|
||
|
**/
|
||
|
class SmsConfig
|
||
|
{
|
||
|
const SMS_SERIAL_NUMBER_EXCHANGE = "SMS_110212"; //实物资产兑换发送短信
|
||
|
|
||
|
|
||
|
}
|