优化代码
parent
85d2557fcf
commit
031636f2f6
|
@ -35,7 +35,7 @@ Lumen-IM 是一个网页版在线即时聊天项目,前端使用 Element-ui +
|
|||
## 5、项目安装
|
||||
|
||||
1. 下载源码包
|
||||
2. 安装框架依赖包执行 `compsoer install` 命令 [项目根目录下执行]
|
||||
2. 安装框架依赖包执行 `composer install` 命令 [项目根目录下执行]
|
||||
2. 拷贝项目根目录下 .env.example 文件为 .env 并正确配置相关参数(mysql、redis)
|
||||
3. 执行项目安装命令(安装数据库及测试数据) `php bin/hyperf.php system:install`
|
||||
4. 启动运行项目 `php bin/hyperf.php start`
|
||||
|
|
|
@ -41,6 +41,15 @@ class TalkMessageController extends CController
|
|||
*/
|
||||
public $talkMessageService;
|
||||
|
||||
/**
|
||||
* 发送文本消息
|
||||
* @RequestMapping(path="text", methods="post")
|
||||
*/
|
||||
public function text()
|
||||
{
|
||||
// todo 待开发
|
||||
}
|
||||
|
||||
/**
|
||||
* 发送代码块消息
|
||||
* @RequestMapping(path="code", methods="post")
|
||||
|
|
|
@ -18,7 +18,7 @@ use App\Model\BaseModel;
|
|||
* @property int $is_mark 是否重要消息
|
||||
* @property int $is_read 是否已读
|
||||
* @property int $quote_id 引用消息ID
|
||||
* @property string $warn_users @好友
|
||||
* @property string $warn_users 引用好友
|
||||
* @property string $content 文本消息
|
||||
* @property string $created_at 创建时间
|
||||
* @property string $updated_at 更新时间
|
||||
|
|
Loading…
Reference in New Issue