17 lines
173 B
PHP
17 lines
173 B
PHP
|
<?php
|
||
|
|
||
|
|
||
|
namespace App\Constants;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 定义系统机器人ID
|
||
|
*
|
||
|
* @package App\Constants
|
||
|
*/
|
||
|
class RobotConstant
|
||
|
{
|
||
|
// 登录机器人
|
||
|
const LOGIN_ROBOT = 1;
|
||
|
}
|