优化代码

main
gzydong 2021-08-09 20:58:13 +08:00
parent 85d2557fcf
commit 031636f2f6
4 changed files with 21 additions and 12 deletions

View File

@ -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`

View File

@ -41,6 +41,15 @@ class TalkMessageController extends CController
*/
public $talkMessageService;
/**
* 发送文本消息
* @RequestMapping(path="text", methods="post")
*/
public function text()
{
// todo 待开发
}
/**
* 发送代码块消息
* @RequestMapping(path="code", methods="post")

View File

@ -9,16 +9,16 @@ use App\Model\BaseModel;
/**
* 聊天列表组数据表模型
*
* @property integer $id 聊天列表ID
* @property integer $talk_type 聊天类型[1:好友;2:群聊;]
* @property integer $user_id 用户ID或消息发送者ID
* @property integer $receiver_id 接收者ID[好友ID或群ID]
* @property integer $is_delete 是否删除
* @property integer $is_top 是否置顶
* @property integer $is_disturb 消息免打扰
* @property integer $is_robot 是否机器人
* @property string $created_at 创建时间
* @property \Carbon\Carbon $updated_at 更新时间
* @property integer $id 聊天列表ID
* @property integer $talk_type 聊天类型[1:好友;2:群聊;]
* @property integer $user_id 用户ID或消息发送者ID
* @property integer $receiver_id 接收者ID[好友ID或群ID]
* @property integer $is_delete 是否删除
* @property integer $is_top 是否置顶
* @property integer $is_disturb 消息免打扰
* @property integer $is_robot 是否机器人
* @property string $created_at 创建时间
* @property \Carbon\Carbon $updated_at 更新时间
* @package App\Model
*/
class TalkList extends BaseModel

View File

@ -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 更新时间