Files
wh-api/app/Constants/SourceConst.php
ykxiao 0b2299c427
Some checks failed
Build Docker / build (push) Has been cancelled
协程版仓库后端项目
2025-07-08 14:59:47 +08:00

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;
}