19 lines
245 B
PHP
19 lines
245 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace App\Constant;
|
||
|
|
||
|
/**
|
||
|
* 定义系统机器人ID
|
||
|
*
|
||
|
* @package App\Constants
|
||
|
*/
|
||
|
class RobotConstant
|
||
|
{
|
||
|
// 登录机器人
|
||
|
const LOGIN_ROBOT = 1;
|
||
|
|
||
|
// 聊天机器人
|
||
|
const TALK_ROBOT = 2;
|
||
|
}
|