22 lines
325 B
PHP
Executable File
22 lines
325 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Constants;
|
|
|
|
use Hyperf\Constants\Annotation\Constants;
|
|
|
|
#[Constants]
|
|
class SourceConst extends AbsConst
|
|
{
|
|
/**
|
|
* @Message("管理后台")
|
|
*/
|
|
public const int SOURCE_PC = 1;
|
|
|
|
/**
|
|
* @Message("手机端")
|
|
*/
|
|
public const int SOURCE_MOBILE = 2;
|
|
}
|