优化代码

main
gzydong 2021-10-09 10:43:28 +08:00
parent 45d7c905de
commit d8e8a00f1b
3 changed files with 3 additions and 1 deletions

View File

@ -16,6 +16,7 @@ use Hyperf\DbConnection\Model\Model;
* @property int $logo 机器人logo * @property int $logo 机器人logo
* @property int $is_talk 可发送消息 * @property int $is_talk 可发送消息
* @property int $status 状态 * @property int $status 状态
* @property int $type 机器人类型
* @property string $created_at 创建时间 * @property string $created_at 创建时间
* @property string $updated_at 更新时间 * @property string $updated_at 更新时间
* @package App\Model * @package App\Model

View File

@ -9,7 +9,7 @@ use App\Model\BaseModel;
/** /**
* 聊天记录(入群/退群消息)数据表模型 * 聊天记录(入群/退群消息)数据表模型
* *
* @property int $id * @property int $id 投票ID
* @property int $record_id 消息记录ID * @property int $record_id 消息记录ID
* @property int $user_id 用户ID * @property int $user_id 用户ID
* @property string $title 投票标题 * @property string $title 投票标题

View File

@ -12,6 +12,7 @@ date_default_timezone_set('Asia/Shanghai');
require BASE_PATH . '/vendor/autoload.php'; require BASE_PATH . '/vendor/autoload.php';
// 设置服务运行ID // 设置服务运行ID
define('SERVER_RUN_ID', uniqid()); define('SERVER_RUN_ID', uniqid());