diff --git a/app/Model/Robot.php b/app/Model/Robot.php index 21c4b52..91df2f9 100644 --- a/app/Model/Robot.php +++ b/app/Model/Robot.php @@ -16,6 +16,7 @@ use Hyperf\DbConnection\Model\Model; * @property int $logo 机器人logo * @property int $is_talk 可发送消息 * @property int $status 状态 + * @property int $type 机器人类型 * @property string $created_at 创建时间 * @property string $updated_at 更新时间 * @package App\Model diff --git a/app/Model/Talk/TalkRecordsVote.php b/app/Model/Talk/TalkRecordsVote.php index 60a0a41..b9e9f7d 100644 --- a/app/Model/Talk/TalkRecordsVote.php +++ b/app/Model/Talk/TalkRecordsVote.php @@ -9,7 +9,7 @@ use App\Model\BaseModel; /** * 聊天记录(入群/退群消息)数据表模型 * - * @property int $id + * @property int $id 投票ID * @property int $record_id 消息记录ID * @property int $user_id 用户ID * @property string $title 投票标题 diff --git a/bin/hyperf.php b/bin/hyperf.php index 0860a9a..db8b3ad 100644 --- a/bin/hyperf.php +++ b/bin/hyperf.php @@ -12,6 +12,7 @@ date_default_timezone_set('Asia/Shanghai'); require BASE_PATH . '/vendor/autoload.php'; + // 设置服务运行ID define('SERVER_RUN_ID', uniqid());