diff --git "a/doc/\346\216\245\345\217\243\346\226\207\346\241\243/\350\211\276\345\260\274\347\247\221\346\212\200\345\220\216\345\217\260\347\256\241\347\220\206\345\271\263\345\217\260_v1.0.0.md" "b/doc/\346\216\245\345\217\243\346\226\207\346\241\243/\350\211\276\345\260\274\347\247\221\346\212\200\345\220\216\345\217\260\347\256\241\347\220\206\345\271\263\345\217\260_v1.0.0.md" new file mode 100644 index 0000000000000000000000000000000000000000..8ee7725f86da162074decd4063b8cedf3e23deb1 --- /dev/null +++ "b/doc/\346\216\245\345\217\243\346\226\207\346\241\243/\350\211\276\345\260\274\347\247\221\346\212\200\345\220\216\345\217\260\347\256\241\347\220\206\345\271\263\345\217\260_v1.0.0.md" @@ -0,0 +1,2280 @@ +## /后台管理系统api-v1.0.0 +```text +接口v1.0.0 +``` +#### 公共Header参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +Authorization | Bearer {{token}} | - +#### 公共Query参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Body参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理 +```text +暂无描述 +``` +#### 公共Header参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Query参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Body参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/用户管理 +```text +用户操作相关接口 +``` +#### 公共Header参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Query参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Body参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/用户管理/用户分页列表 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /user/getPageList?current=2&size=10 + +#### 请求方式 +> GET + +#### Content-Type +> none + +#### 请求Query参数 +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +current | 2 | String | 是 | 当前页码 +size | 10 | String | 是 | 每页条数 +userName | zhanglp | String | 否 | 用户名 +startTime | 2022-07-13 | String | 否 | 开始时间 +endTime | 2022-07-14 | String | 否 | 结束时间 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +#### 成功响应示例 +```javascript +{ + "status": 0, + "msg": "订单分页列表", + "data": [ + { + "id": 11, + "user_id": "YH_1", + "user_name": "admin", + "password": "14e1b600b1fd579f47433b88e8d85291", + "avatar": "", + "full_name": "管理员", + "phone": "15229380174", + "email": "quick@163.com", + "address": "北京朝阳", + "create_time": "2022-05-13 16:20:47", + "remark": "管理员账号,请勿删除", + "deleted": 0, + "enabled": 0 + } + ], + "page": { + "current": 1, + "size": 10, + "total": 3 + } +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | - | Number | 状态:0:成功,1:失败 +msg | 订单分页列表 | String | 提示信息 +data | - | Object | 响应数据 +data.id | 11 | Number | 订单主键 +data.user_id | YH_1 | String | 用户编号 +data.user_name | admin | String | 用户名 +data.password | 14e1b600b1fd579f47433b88e8d85291 | String | 密码 +data.avatar | - | Object | 头像 +data.full_name | 管理员 | String | 姓名 +data.phone | 15229380174 | String | 手机号 +data.email | quick@163.com | String | 邮箱 +data.address | 北京朝阳 | String | 地址 +data.create_time | 2022-05-13 16:20:47 | String | 创建时间 +data.remark | 管理员账号,请勿删除 | String | 备注 +data.deleted | - | Number | 是否删除:0:未删除,1:已删除 +data.enabled | - | Number | 是否启用:0:启用,1:禁用 +page | - | Object | 分页 +page.current | 1 | Number | 当前页码 +page.size | 10 | Number | 每页条数 +page.total | 3 | Number | 分页总条数 +#### 错误响应示例 +```javascript +{ + "status": 1, + "msg": "获取用户分页列表失败", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | 1 | Number | 状态:0:成功,1:失败 +msg | 获取用户分页列表失败 | String | 提示信息 +data | - | Object | 响应数据 +## /后台管理系统api-v1.0.0/系统管理/用户管理/用户列表 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /user/getList + +#### 请求方式 +> GET + +#### Content-Type +> none + +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +#### 成功响应示例 +```javascript +{ + "status": 0, + "msg": "订单分页列表", + "data": [ + { + "id": 11, + "user_id": "YH_1", + "user_name": "admin", + "password": "14e1b600b1fd579f47433b88e8d85291", + "avatar": "", + "full_name": "管理员", + "phone": "15229380174", + "email": "quick@163.com", + "address": "北京朝阳", + "create_time": "2022-05-13 16:20:47", + "remark": "管理员账号,请勿删除", + "deleted": 0, + "enabled": 0 + } + ], + "page": { + "current": 1, + "size": 10, + "total": 3 + } +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | - | Number | 状态:0:成功,1:失败 +msg | 订单分页列表 | String | 提示信息 +data | - | Object | 响应数据 +data.id | 11 | Number | 订单主键 +data.user_id | YH_1 | String | 用户编号 +data.user_name | admin | String | 用户名 +data.password | 14e1b600b1fd579f47433b88e8d85291 | String | 密码 +data.avatar | - | Object | 头像 +data.full_name | 管理员 | String | 姓名 +data.phone | 15229380174 | String | 手机号 +data.email | quick@163.com | String | 邮箱 +data.address | 北京朝阳 | String | 地址 +data.create_time | 2022-05-13 16:20:47 | String | 创建时间 +data.remark | 管理员账号,请勿删除 | String | 备注 +data.deleted | - | Number | 是否删除:0:未删除,1:已删除 +data.enabled | - | Number | 是否启用:0:启用,1:禁用 +page | - | Object | 分页 +page.current | 1 | Number | 当前页码 +page.size | 10 | Number | 每页条数 +page.total | 3 | Number | 分页总条数 +#### 错误响应示例 +```javascript +{ + "status": 1, + "msg": "获取用户分页列表失败", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | 1 | Number | 状态:0:成功,1:失败 +msg | 获取用户分页列表失败 | String | 提示信息 +data | - | Object | 响应数据 +## /后台管理系统api-v1.0.0/系统管理/用户管理/用户详情 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /user/getDetail?id=45 + +#### 请求方式 +> GET + +#### Content-Type +> none + +#### 请求Query参数 +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 45 | Text | 是 | 订单主键 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +#### 成功响应示例 +```javascript +{ + "status": 0, + "msg": "用户详情", + "data": { + "id": 11, + "user_id": "YH_1", + "user_name": "admin", + "password": "14e1b600b1fd579f47433b88e8d85291", + "avatar": "", + "full_name": "管理员", + "phone": "15229380174", + "email": "quick@163.com", + "address": "北京朝阳", + "create_time": "2022-05-13 16:20:47", + "remark": "管理员账号,请勿删除", + "deleted": 0, + "enabled": 0 + } +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | - | Number | 状态:0:成功,1:失败 +msg | 用户详情 | String | 提示信息 +data | - | Object | 响应数据 +data.id | 11 | Number | 订单主键 +data.user_id | YH_1 | String | 用户编号 +data.user_name | admin | String | 用户名 +data.password | 14e1b600b1fd579f47433b88e8d85291 | String | 密码 +data.avatar | - | Object | 头像 +data.full_name | 管理员 | String | 姓名 +data.phone | 15229380174 | String | 手机号 +data.email | quick@163.com | String | 邮箱 +data.address | 北京朝阳 | String | 地址 +data.create_time | 2022-05-13 16:20:47 | String | 创建时间 +data.remark | 管理员账号,请勿删除 | String | 备注 +data.deleted | - | Number | 是否删除:0:未删除,1:已删除 +data.enabled | - | Number | 是否启用:0:启用,1:禁用 +#### 错误响应示例 +```javascript +{ + "status": 1, + "msg": "获取用户详情失败", + "data": null, +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | 1 | Number | 状态:0:成功,1:失败 +msg | 获取用户详情失败 | String | 提示信息 +data | - | Object | 响应数据 +## /后台管理系统api-v1.0.0/系统管理/用户管理/登录用户信息 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /user/getInfo?userName=admin + +#### 请求方式 +> GET + +#### Content-Type +> none + +#### 请求Query参数 +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +userName | admin | Text | 是 | 用户名 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +#### 成功响应示例 +```javascript +{ + "status": 0, + "msg": "登录用户信息", + "data": { + "id": 11, + "user_id": "YH_1", + "user_name": "admin", + "password": "14e1b600b1fd579f47433b88e8d85291", + "avatar": "", + "full_name": "管理员", + "phone": "15229380174", + "email": "quick@163.com", + "address": "北京朝阳", + "create_time": "2022-05-13 16:20:47", + "remark": "管理员账号,请勿删除", + "deleted": 0, + "enabled": 0 + } +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | - | Number | 状态:0:成功,1:失败 +msg | 登录用户信息 | String | 提示信息 +data | - | Object | 响应数据 +data.id | 11 | Number | 订单主键 +data.user_id | YH_1 | Number | 用户编号 +data.user_name | admin | String | 用户名称 +data.password | 14e1b600b1fd579f47433b88e8d85291 | String | 密码 +data.avatar | - | Object | 头像 +data.full_name | 管理员 | String | 姓名 +data.phone | 15229380174 | String | 手机号 +data.email | quick@163.com | String | 邮箱 +data.address | 北京朝阳 | String | 地址 +data.create_time | 2022-05-13 16:20:47 | String | 创建时间 +data.remark | 管理员账号,请勿删除 | String | 备注 +data.deleted | - | Number | 是否删除:0:未删除,1:已删除 +data.enabled | - | Number | 是否启用:0:启用,1:禁用 +#### 错误响应示例 +```javascript +{ + "status": 1, + "msg": "获取用户登录信息失败", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | 1 | Number | 状态:0:成功,1:失败 +msg | 获取用户登录信息失败 | String | 提示信息 +data | - | Object | 响应数据 +## /后台管理系统api-v1.0.0/系统管理/用户管理/新增用户 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /user/add + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "userId": "YH_333", + "userName": "leifn22", + "avatar": "", + "fullName": "", + "phone": "", + "email": "1841031740@qq.com", + "address": "陕西西安" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +userId | YH_333 | String | 是 | 用户编号 +userName | leifn22 | String | 是 | 用户名 +avatar | /upload/1111.png | String | 否 | 头像 +fullName | 张飞 | String | 否 | 姓名 +phone | 15229380174 | String | 否 | 手机号 +email | 1841031740@qq.com | String | 否 | 邮箱 +address | 陕西西安 | String | 否 | 地址 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +#### 成功响应示例 +```javascript +{ + "status": 0, + "msg": "添加用户成功", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | - | Number | 状态:0:成功,1:失败 +msg | 添加用户成功 | String | 提示信息 +data | - | Object | 响应数据 +#### 错误响应示例 +```javascript +{ + "status": 1, + "msg": "添加用户失败", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | 1 | Number | 状态:0:成功,1:失败 +msg | 添加用户失败 | String | 提示信息 +data | - | Object | 响应数据 +## /后台管理系统api-v1.0.0/系统管理/用户管理/编辑用户 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /user/update + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "id": "41", + "userName": "lllll", + "avatar": "", + "fullName": "张立平", + "phone": "13520073575", + "email": "1841031740@qq.com", + "address": "陕西西安2" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 41 | String | 是 | 订单主键 +userName | lllll | String | 是 | 用户名 +avatar | /uploads/22.png | String | 否 | 头像 +fullName | 张立平 | String | 否 | 姓名 +phone | 13520073575 | String | 否 | 手机号 +email | 1841031740@qq.com | String | 否 | 邮箱 +address | 陕西西安2 | String | 否 | 地址 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +#### 成功响应示例 +```javascript +{ + "status": 0, + "msg": "修改用户成功", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | - | Number | 状态:0:成功,1:失败 +msg | 修改用户成功 | String | 提示信息 +data | - | Object | 响应数据 +#### 错误响应示例 +```javascript +{ + "status": 1, + "msg": "修改用户失败", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | 1 | Number | 状态:0:成功,1:失败 +msg | 修改用户失败 | String | 提示信息 +data | - | Object | 响应数据 +## /后台管理系统api-v1.0.0/系统管理/用户管理/删除用户 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /user/remove + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "id":"41" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 4 | String | 是 | 订单主键 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +#### 成功响应示例 +```javascript +{ + "status": 0, + "msg": "删除用户成功", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | - | Number | 状态:0:成功,1:失败 +msg | 删除用户成功 | String | 提示信息 +data | - | Object | 响应数据 +#### 错误响应示例 +```javascript +{ + "status": 1, + "msg": "删除用户失败", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | 1 | Number | 状态:0:成功,1:失败 +msg | 删除用户失败 | String | 提示信息 +data | - | Object | 响应数据 +## /后台管理系统api-v1.0.0/系统管理/用户管理/批量删除用户 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /user/batchRemove + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "ids":"35,36,37" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +ids | 4,5,6 | String | 是 | 需要删除的主键,多个以逗号分割 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +#### 成功响应示例 +```javascript +{ + "status": 0, + "msg": "删除用户成功", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | - | Number | 状态:0:成功,1:失败 +msg | 删除用户成功 | String | 提示信息 +data | - | Object | 响应数据 +#### 错误响应示例 +```javascript +{ + "status": 1, + "msg": "删除用户失败", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | 1 | Number | 状态:0:成功,1:失败 +msg | 删除用户失败 | String | 提示信息 +data | - | Object | 响应数据 +## /后台管理系统api-v1.0.0/系统管理/用户管理/批量导入用户 +```text +暂无描述 +``` +#### 接口状态 +> 需修改 + +#### 接口URL +> /user/improtUser + +#### 请求方式 +> POST + +#### Content-Type +> form-data + +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/用户管理/批量导出用户 +```text +暂无描述 +``` +#### 接口状态 +> 需修改 + +#### 接口URL +> /user/exportUser + +#### 请求方式 +> POST + +#### Content-Type +> form-data + +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/用户管理/重置用户密码 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /user/resetPassword + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "id":"4" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 4 | String | 是 | 订单主键 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +#### 成功响应示例 +```javascript +{ + "status": 0, + "msg": "重置用户密码成功", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | - | Number | 状态:0:成功,1:失败 +msg | 重置用户密码成功 | String | 提示信息 +data | - | Object | 响应数据 +#### 错误响应示例 +```javascript +{ + "status": 1, + "msg": "重置用户密码失败", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | 1 | Number | 状态:0:成功,1:失败 +msg | 重置用户密码失败 | String | 提示信息 +data | - | Object | 响应数据 +## /后台管理系统api-v1.0.0/系统管理/用户管理/启用用户 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /user/enabled + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "id":"45" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 4 | String | 是 | 订单主键 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +#### 成功响应示例 +```javascript +{ + "status": 0, + "msg": "启用用户成功", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | - | Number | 状态:0:成功,1:失败 +msg | 启用用户成功 | String | 提示信息 +data | - | Object | 响应数据 +#### 错误响应示例 +```javascript +{ + "status": 1, + "msg": "启用用户失败", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | 1 | Number | 状态:0:成功,1:失败 +msg | 启用用户失败 | String | 提示信息 +data | - | Object | 响应数据 +## /后台管理系统api-v1.0.0/系统管理/用户管理/禁用用户 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /user/disable + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "id":"45" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 4 | String | 是 | 订单主键 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +#### 成功响应示例 +```javascript +{ + "status": 0, + "msg": "禁用用户成功", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | - | Number | 状态:0:成功,1:失败 +msg | 禁用用户成功 | String | 提示信息 +data | - | Object | 响应数据 +#### 错误响应示例 +```javascript +{ + "status": 1, + "msg": "禁用用户失败", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | 1 | Number | 状态:0:成功,1:失败 +msg | 禁用用户失败 | String | 提示信息 +data | - | Object | 响应数据 +## /后台管理系统api-v1.0.0/系统管理/角色管理 +```text +角色相关操作 +``` +#### 公共Header参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Query参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Body参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/角色管理/角色列表 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /role/getList + +#### 请求方式 +> GET + +#### Content-Type +> form-data + +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/角色管理/新增角色 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /role/add + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "id": "", + "roleId": "test1", + "roleName": "测试角色" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 5 | Number | 是 | - +username | lei | String | 是 | 用户名 +password | 123 | String | 是 | 密码 +createtime | 2022-05-13 | String | 是 | - +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/角色管理/删除角色 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /role/delete + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "id":"7" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 4 | String | 是 | 角色主键 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +#### 成功响应示例 +```javascript +{ + "status": 0, + "msg": "删除用户成功", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | - | Number | 状态:0:成功,1:失败 +msg | 删除用户成功 | String | 提示信息 +data | - | Object | 响应数据 +#### 错误响应示例 +```javascript +{ + "status": 1, + "msg": "删除用户失败", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | 1 | Number | 状态:0:成功,1:失败 +msg | 删除用户失败 | String | 提示信息 +data | - | Object | 响应数据 +## /后台管理系统api-v1.0.0/系统管理/角色管理/修改角色 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /role/update + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "id": "7", + "roleId": "test1", + "roleName": "测试角色222" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 5 | Number | 是 | - +username | lei | String | 是 | 用户名 +password | 123 | String | 是 | 密码 +createtime | 2022-05-13 | String | 是 | - +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/部门管理 +```text +系统部门相关接口 +``` +#### 公共Header参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Query参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Body参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/部门管理/部门列表 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /dept/getList + +#### 请求方式 +> GET + +#### Content-Type +> form-data + +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/部门管理/获取父级下的部门列表 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /dept/getListByPid?pId=20 + +#### 请求方式 +> GET + +#### Content-Type +> form-data + +#### 请求Query参数 +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +pId | 20 | Text | 是 | - +#### 请求Body参数 +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +token | Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyTmFtZSI6ImFkbWluIiwiaWF0IjoxNjU5MjE3MTc3LCJleHAiOjE2NTk0NzYzNzd9.-ZRbujbPYbMMbg3oY-HiLraB5B-B-2tjU1gDwfTkYls | Text | 是 | 认证令牌 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/部门管理/新增部门 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /dept/add + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "deptId": "BM_0008", + "name": "运营部", + "pid": 22 +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 5 | Number | 是 | - +username | lei | String | 是 | 用户名 +password | 123 | String | 是 | 密码 +createtime | 2022-05-13 | String | 是 | - +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/部门管理/编辑部门 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /dept/update + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "id": 28, + "name": "运营部备份1", + "pid":22 +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 5 | Number | 是 | - +username | lei11 | String | 是 | 用户名 +password | 123 | String | 是 | 密码 +createtime | 2022-05-13 | String | 是 | - +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/部门管理/删除部门 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /dept/delete + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "id": 7, +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 41 | String | 是 | 字典主键 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/菜单管理 +```text +菜单相关操作 +``` +#### 公共Header参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Query参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Body参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/菜单管理/菜单列表 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /menu/getList + +#### 请求方式 +> GET + +#### Content-Type +> form-data + +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/菜单管理/新增菜单 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /menu/add + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +"menuName": "test-menu", + "path": "user", + "menuType": 1, + "icon": "", + "sort": 4, + "pid": 1, + "link": 0, + "enabled": 0, + "status": 0 +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 5 | Number | 是 | - +username | lei | String | 是 | 用户名 +password | 123 | String | 是 | 密码 +createtime | 2022-05-13 | String | 是 | - +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/菜单管理/删除菜单 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /menu/delete + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "id":"41" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 4 | String | 是 | 菜单主键 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +#### 成功响应示例 +```javascript +{ + "status": 0, + "msg": "删除用户成功", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | - | Number | 状态:0:成功,1:失败 +msg | 删除用户成功 | String | 提示信息 +data | - | Object | 响应数据 +#### 错误响应示例 +```javascript +{ + "status": 1, + "msg": "删除用户失败", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | 1 | Number | 状态:0:成功,1:失败 +msg | 删除用户失败 | String | 提示信息 +data | - | Object | 响应数据 +## /后台管理系统api-v1.0.0/系统管理/菜单管理/修改菜单 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /menu/update + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "id": 15, + "menuId": "001", + "menuName": "test-menu", + "path": "user", + "menuType": 1, + "icon": "", + "sort": 4, + "pid": 1, + "link": 0, + "enabled": 0, + "status": 0 +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 5 | Number | 是 | - +username | lei | String | 是 | 用户名 +password | 123 | String | 是 | 密码 +createtime | 2022-05-13 | String | 是 | - +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/字典管理 +```text +系统字典相关接口 +``` +#### 公共Header参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Query参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Body参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/字典管理/字典列表 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /dictionary/getList?dic_type_id=gender + +#### 请求方式 +> GET + +#### Content-Type +> form-data + +#### 请求Query参数 +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +dic_type_id | gender | Text | 是 | 字典类型 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/字典管理/新增字典 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /dictionary/add + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "id":"", + "dic_type_id": "keyword", + "dic_id": "14", + "name": "联系我" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 5 | Number | 是 | - +username | lei | String | 是 | 用户名 +password | 123 | String | 是 | 密码 +createtime | 2022-05-13 | String | 是 | - +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/字典管理/编辑字典 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /dictionary/update + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "id":"15", + "dic_type_id": "keyword", + "dic_id": "14", + "name": "联系我" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 5 | Number | 是 | - +username | lei11 | String | 是 | 用户名 +password | 123 | String | 是 | 密码 +createtime | 2022-05-13 | String | 是 | - +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/字典管理/删除字典 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /dictionary/delete + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "id":"41" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 41 | String | 是 | 字典主键 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/字典分类 +```text +字典分类相关接口 +``` +#### 公共Header参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Query参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Body参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/字典分类/字典分类列表 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /dictionaryType/getList + +#### 请求方式 +> GET + +#### Content-Type +> form-data + +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/字典分类/新增字典分类 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /dictionaryType/add + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "id": "", + "dic_type_id": "gender1", + "name": "性别1" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 5 | Number | 是 | - +username | lei | String | 是 | 用户名 +password | 123 | String | 是 | 密码 +createtime | 2022-05-13 | String | 是 | - +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/字典分类/编辑字典分类 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /dictionaryType/update + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "id": 1, + "dic_type_id": "gender1", + "name": "性别3" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 5 | Number | 是 | - +username | lei11 | String | 是 | 用户名 +password | 123 | String | 是 | 密码 +createtime | 2022-05-13 | String | 是 | - +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/字典分类/删除字典分类 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /dictionaryType/delete + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "id":"41" +} +``` +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/日志管理 +```text +日志相关操作 +``` +#### 公共Header参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Query参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Body参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/日志管理/日志分页列表 +```text +暂无描述 +``` +#### 接口状态 +> 开发中 + +#### 接口URL +> /log/getPageList?startTime=1659542400&endTime=1659542400¤t=1&size=10&logType=1 + +#### 请求方式 +> GET + +#### Content-Type +> form-data + +#### 请求Query参数 +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +startTime | 1659542400 | Text | 是 | 1659542400 +endTime | 1659542400 | Text | 是 | 1659542400 +current | 1 | Text | 是 | - +size | 10 | Text | 是 | - +logType | 1 | Text | 是 | 0:操作日志,1:错误日志 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/日志管理/删除日志 +```text +暂无描述 +``` +#### 接口状态 +> 开发中 + +#### 接口URL +> /log/remove + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "id":"7" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 5 | Number | 是 | - +username | lei | String | 是 | 用户名 +password | 123 | String | 是 | 密码 +createtime | 2022-05-13 | String | 是 | - +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/系统管理/日志管理/批量删除日志 +```text +暂无描述 +``` +#### 接口状态 +> 开发中 + +#### 接口URL +> /log/batchRemove + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "ids":"7,8" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 4 | String | 是 | 角色主键 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +#### 成功响应示例 +```javascript +{ + "status": 0, + "msg": "删除用户成功", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | - | Number | 状态:0:成功,1:失败 +msg | 删除用户成功 | String | 提示信息 +data | - | Object | 响应数据 +#### 错误响应示例 +```javascript +{ + "status": 1, + "msg": "删除用户失败", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | 1 | Number | 状态:0:成功,1:失败 +msg | 删除用户失败 | String | 提示信息 +data | - | Object | 响应数据 +## /后台管理系统api-v1.0.0/权限管理 +```text +暂无描述 +``` +#### 公共Header参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Query参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Body参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/权限管理/用户权限 +```text +系统字典相关接口 +``` +#### 公共Header参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Query参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Body参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/权限管理/用户权限/获取用户权限 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /user/getPermission?id=62 + +#### 请求方式 +> GET + +#### Content-Type +> json + +#### 请求Query参数 +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 62 | Text | 是 | 用户主键 +#### 请求Body参数 +```javascript + +``` +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +#### 成功响应示例 +```javascript +{ + "status": 0, + "msg": "禁用用户成功", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | - | Number | 状态:0:成功,1:失败 +msg | 禁用用户成功 | String | 提示信息 +data | - | Object | 响应数据 +#### 错误响应示例 +```javascript +{ + "status": 1, + "msg": "禁用用户失败", + "data": null +} +``` +参数名 | 示例值 | 参数类型 | 参数描述 +--- | --- | --- | --- +status | 1 | Number | 状态:0:成功,1:失败 +msg | 禁用用户失败 | String | 提示信息 +data | - | Object | 响应数据 +## /后台管理系统api-v1.0.0/权限管理/角色权限 +```text +系统字典相关接口 +``` +#### 公共Header参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Query参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 公共Body参数 +参数名 | 示例值 | 参数描述 +--- | --- | --- +暂无参数 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/权限管理/角色权限/获取角色分配的菜单权限 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /role/getMenuPermission?id=9 + +#### 请求方式 +> GET + +#### Content-Type +> form-data + +#### 请求Query参数 +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 9 | Text | 是 | 角色主键 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/权限管理/角色权限/获取角色分配的用户权限 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /role/getUserPermission?id=1 + +#### 请求方式 +> GET + +#### Content-Type +> form-data + +#### 请求Query参数 +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 1 | Text | 是 | 角色主键 +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/权限管理/角色权限/角色分配权限 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /role/assignPermission + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "roleId":"9", + "menuIds": "8,9" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 5 | Number | 是 | - +username | lei | String | 是 | 用户名 +password | 123 | String | 是 | 密码 +createtime | 2022-05-13 | String | 是 | - +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/权限管理/角色权限/角色分配用户 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /role/assignUser + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + "roleId":"9", + "userIds": "1,2,3" +} +``` +参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 +--- | --- | --- | --- | --- +id | 5 | Number | 是 | - +username | lei | String | 是 | 用户名 +password | 123 | String | 是 | 密码 +createtime | 2022-05-13 | String | 是 | - +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/登录 +```text +暂无描述 +``` +#### 接口状态 +> 已完成 + +#### 接口URL +> /login + +#### 请求方式 +> POST + +#### Content-Type +> json + +#### 请求Body参数 +```javascript +{ + + "userName": "admin", + "userPassword": "e10adc3949ba59abbe56e057f20f883e" +} +``` +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +const token=response.json.data.token +apt.variables.set("token", token); +``` +## /后台管理系统api-v1.0.0/刷新token +```text +暂无描述 +``` +#### 接口状态 +> 开发中 + +#### 接口URL +> /user/refreshToken + +#### 请求方式 +> POST + +#### Content-Type +> form-data + +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` +## /后台管理系统api-v1.0.0/退出 +```text +暂无描述 +``` +#### 接口状态 +> 开发中 + +#### 接口URL +> /user/loginOut + +#### 请求方式 +> POST + +#### Content-Type +> form-data + +#### 预执行脚本 +```javascript +暂无预执行脚本 +``` +#### 后执行脚本 +```javascript +暂无后执行脚本 +``` \ No newline at end of file diff --git a/release/release_v1.0.0.zip b/release/release_v1.0.0.zip new file mode 100644 index 0000000000000000000000000000000000000000..56d03b7372d10e1dfc463129628612e041dd261f Binary files /dev/null and b/release/release_v1.0.0.zip differ diff --git a/sql/order/order_20220729_121535.sql b/sql/order/order_20220729_121535.sql deleted file mode 100644 index 26598fed1f67e242c4125afef03ace5f924f3c68..0000000000000000000000000000000000000000 --- a/sql/order/order_20220729_121535.sql +++ /dev/null @@ -1,310 +0,0 @@ --- MySQL dump 10.13 Distrib 8.0.24, for Linux (x86_64) --- --- Host: localhost Database: order --- ------------------------------------------------------ --- Server version 8.0.24 - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!50503 SET NAMES utf8mb4 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `bus_orders` --- - -DROP TABLE IF EXISTS `bus_orders`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!50503 SET character_set_client = utf8mb4 */; -CREATE TABLE `bus_orders` ( - `id` int NOT NULL AUTO_INCREMENT COMMENT '编号', - `order_id` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '订单编号', - `content` json DEFAULT NULL COMMENT '内容json', - `keyword` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '关键字', - `status` int DEFAULT NULL COMMENT '订单状态:0:未解决;1:已解决;', - `create_time` timestamp NULL DEFAULT NULL COMMENT '创建时间', - `remark` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '备注', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=993 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `bus_orders` --- - -LOCK TABLES `bus_orders` WRITE; -/*!40000 ALTER TABLE `bus_orders` DISABLE KEYS */; -INSERT INTO `bus_orders` VALUES (1,'202276131748127','{\"seq\": 1315003, \"atme\": false, \"font\": \"宋体\", \"rand\": 1475162811, \"time\": 1657084667, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"澳门\", \"card\": \"SKY[一路]繁华的\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2325052506, \"nickname\": \"一路繁华的夏ˇ\"}, \"message\": [{\"text\": \"大佬们,求助,我存在数据库的颜色属性,怎么渲染到scss\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2325052506, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcoqVfFoAFBC7V+0yu2LFGvsB\", \"raw_message\": \"大佬们,求助,我存在数据库的颜色属性,怎么渲染到scss\", \"message_type\": \"group\"}','求助',1,'2022-07-06 05:17:48',NULL),(2,'202276131840151','{\"seq\": 1315018, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1830481010, \"time\": 1657084720, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[交流]邵杰\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"邵杰\"}, \"message\": [{\"text\": \"有遇到比较难解决的bug,可以给点好处,我帮忙解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1336322173, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphck+mqH0AFBDKbRrscmLFGzAB\", \"raw_message\": \"有遇到比较难解决的bug,可以给点好处,我帮忙解决\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 05:18:40',NULL),(3,'202276133025159','{\"seq\": 15179, \"atme\": false, \"font\": \"宋体\", \"rand\": 874737245, \"time\": 1657085425, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2967923211, \"nickname\": \"念\"}, \"message\": [{\"text\": \"天啊,有没有大佬帮忙看一下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2967923211, \"group_id\": 601944959, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Quasar Vue 学习交流群\", \"message_id\": \"I+Dzf7Dm6gsAADtLNCNuXWLFHfEB\", \"raw_message\": \"天啊,有没有大佬帮忙看一下\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 05:30:25',NULL),(4,'20227613379116','{\"seq\": 616594, \"atme\": false, \"font\": \"宋体\", \"rand\": 1349857108, \"time\": 1657085829, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"广州\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 6483478, \"nickname\": \"畅想\"}, \"message\": [{\"text\": \"求助\\r现在打包输出的脚本有问题,压缩后不好调试\\rvue3+element-plus+vite2配置\\r在哪里配置让它输出到dist的脚本文件不压缩\\r直接输出源码\\r我要调试\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 6483478, \"group_id\": 583575104, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue.js\", \"message_id\": \"IsimQABi7hYACWiSUHUvVGLFH4UB\", \"raw_message\": \"求助\\r现在打包输出的脚本有问题,压缩后不好调试\\rvue3+element-plus+vite2配置\\r在哪里配置让它输出到dist的脚本文件不压缩\\r直接输出源码\\r我要调试\", \"message_type\": \"group\"}','求助',1,'2022-07-06 05:37:09',NULL),(5,'202276133715165','{\"seq\": 455827, \"atme\": false, \"font\": \"宋体\", \"rand\": 2127450718, \"time\": 1657085835, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"广州\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 6483478, \"nickname\": \"畅想\"}, \"message\": [{\"text\": \"求助\\r现在打包输出的脚本有问题,压缩后不好调试\\rvue3+element-plus+vite2配置\\r在哪里配置让它输出到dist的脚本文件不压缩\\r直接输出源码\\r我要调试\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 6483478, \"group_id\": 68744799, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue.js学习交流超级群\", \"message_id\": \"BBj2XwBi7hYABvSTfs5SXmLFH4sB\", \"raw_message\": \"求助\\r现在打包输出的脚本有问题,压缩后不好调试\\rvue3+element-plus+vite2配置\\r在哪里配置让它输出到dist的脚本文件不压缩\\r直接输出源码\\r我要调试\", \"message_type\": \"group\"}','求助',1,'2022-07-06 05:37:15',NULL),(6,'202276133733180','{\"seq\": 1315130, \"atme\": false, \"font\": \"宋体\", \"rand\": 986108612, \"time\": 1657085853, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 28, \"sex\": \"male\", \"area\": \"重庆\", \"card\": \"SKY[交流]孤影\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 871782853, \"nickname\": \"孤影\"}, \"message\": [{\"text\": \"有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 871782853, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcjP2WcUAFBE6OsbSxGLFH50B\", \"raw_message\": \"有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-06 05:37:33',NULL),(7,'202276133740114','{\"seq\": 3679, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3732755203, \"time\": 1657085860, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 30, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2149095612, \"nickname\": \"letsbehappy\"}, \"message\": [{\"text\": \"谁能帮我整合 uniapp+aj项目. 有偿求助。\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2149095612, \"group_id\": 820320773, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE-JS-手机控制\", \"message_id\": \"MOUaBYAYmLwAAA5f3n1TA2LFH6QB\", \"raw_message\": \"谁能帮我整合 uniapp+aj项目. 有偿求助。\", \"message_type\": \"group\"}','有偿',1,'2022-07-06 05:37:40',NULL),(8,'20227613436125','{\"seq\": 181805, \"atme\": false, \"font\": \"宋体\", \"rand\": 2140517994, \"time\": 1657086186, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 28, \"sex\": \"male\", \"area\": \"重庆\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 871782853, \"nickname\": \"孤影\"}, \"message\": [{\"text\": \"有熟悉vue前端代理解决跨域的吗,紧急,需要远程协助。有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 871782853, \"group_id\": 697906316, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE框架/admin技术交流群\", \"message_id\": \"KZk0jDP2WcUAAsYtf5W2amLFIOoB\", \"raw_message\": \"有熟悉vue前端代理解决跨域的吗,紧急,需要远程协助。有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-06 05:43:06',NULL),(9,'202276134352152','{\"seq\": 1315179, \"atme\": false, \"font\": \"宋体\", \"rand\": 1914626912, \"time\": 1657086232, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 28, \"sex\": \"male\", \"area\": \"重庆\", \"card\": \"SKY[交流]孤影\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 871782853, \"nickname\": \"孤影\"}, \"message\": [{\"text\": \"谁比较精通,帮忙远程解决给200块钱感谢\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 871782853, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcjP2WcUAFBFrch7jYGLFIRgB\", \"raw_message\": \"谁比较精通,帮忙远程解决给200块钱感谢\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 05:43:52',NULL),(10,'20227613440109','{\"seq\": 181807, \"atme\": false, \"font\": \"宋体\", \"rand\": 1996750630, \"time\": 1657086240, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 28, \"sex\": \"male\", \"area\": \"重庆\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 871782853, \"nickname\": \"孤影\"}, \"message\": [{\"text\": \"谁比较精通,帮忙远程解决给200块钱感谢\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 871782853, \"group_id\": 697906316, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE框架/admin技术交流群\", \"message_id\": \"KZk0jDP2WcUAAsYvdwP/JmLFISAB\", \"raw_message\": \"谁比较精通,帮忙远程解决给200块钱感谢\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 05:44:00',NULL),(11,'20227614443174','{\"seq\": 9104, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 803345390, \"time\": 1657087483, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 446733884, \"nickname\": \"白\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/446733884/698722664-2684604207-B072581B2502EE800E86251E7E9F06D1/0?term=2\", \"file\": \"b072581b2502ee800e86251e7e9f06d125444-659-180.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"有人能解决这个问题不 有偿的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 446733884, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaBqgnjwAACOQL+IT7mLFJfsB\", \"raw_message\": \"[图片]有人能解决这个问题不 有偿的\", \"message_type\": \"group\"}','有偿',1,'2022-07-06 06:04:43',NULL),(12,'2022761456174','{\"seq\": 172618, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1540253807, \"time\": 1657087506, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 446733884, \"nickname\": \"白\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/446733884/4185949345-2601802203-B072581B2502EE800E86251E7E9F06D1/0?term=2\", \"file\": \"b072581b2502ee800e86251e7e9f06d125444-659-180.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"有人能解决这个问题不 有偿的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 446733884, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIRqgnjwAAqJKW85ob2LFJhIB\", \"raw_message\": \"[图片]有人能解决这个问题不 有偿的\", \"message_type\": \"group\"}','有偿',1,'2022-07-06 06:05:06',NULL),(13,'202276141559114','{\"seq\": 1315297, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 463599715, \"time\": 1657088159, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 36, \"sex\": \"male\", \"area\": \"北京\", \"card\": \"SKY[超级]民工\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 382875894, \"nickname\": \"超级民工\"}, \"message\": [{\"text\": \"大神出手帮忙解决小问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 382875894, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphchbSOPYAFBHhG6H4Y2LFKJ8B\", \"raw_message\": \"大神出手帮忙解决小问题\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 06:15:59',NULL),(14,'202276141626178','{\"seq\": 367734, \"atme\": false, \"font\": \"宋体\", \"rand\": 1489274619, \"time\": 1657088186, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 572215696, \"text\": \"@勿。\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3149531945-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABZx2WMSG+2LFKLoB\", \"raw_message\": \"@勿。 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 06:16:26',NULL),(15,'202276141628153','{\"seq\": 367735, \"atme\": false, \"font\": \"宋体\", \"rand\": 876695019, \"time\": 1657088188, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2977338163, \"text\": \"@Gale\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2369173877-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABZx3NEFN62LFKLwB\", \"raw_message\": \"@Gale 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 06:16:28',NULL),(16,'202276141630140','{\"seq\": 367736, \"atme\": false, \"font\": \"宋体\", \"rand\": 1270607710, \"time\": 1657088190, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1525193943, \"text\": \"@湘籍皖人\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2388761400-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABZx4S7vvXmLFKL4B\", \"raw_message\": \"@湘籍皖人 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 06:16:30',NULL),(17,'202276141632113','{\"seq\": 367737, \"atme\": false, \"font\": \"宋体\", \"rand\": 1168064197, \"time\": 1657088192, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1105258717, \"text\": \"@瞳难👻\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2254038833-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABZx5RZ8+xWLFKMAB\", \"raw_message\": \"@瞳难👻 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 06:16:32',NULL),(18,'202276145942162','{\"seq\": 56179, \"atme\": false, \"font\": \"宋体\", \"rand\": 915583867, \"time\": 1657090782, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"\", \"card\": \"职业请教玛卡巴卡大佬\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 978243710, \"nickname\": \"Passion\"}, \"message\": [{\"text\": \"有没有帮忙部署vue前端项目的,需要在本地电脑跑起来,有偿100\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 978243710, \"group_id\": 325021815, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue/uniapp学习交流\", \"message_id\": \"E19wdzpO0H4AANtzNpKze2LFMt4B\", \"raw_message\": \"有没有帮忙部署vue前端项目的,需要在本地电脑跑起来,有偿100\", \"message_type\": \"group\"}','有偿',1,'2022-07-06 06:59:42',NULL),(19,'20227615151124','{\"seq\": 63784, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1180192055, \"time\": 1657091701, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 798947300, \"nickname\": \"same\"}, \"message\": [{\"text\": \"榜一是花钱 不是段位\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 798947300, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE前端划水群\", \"message_id\": \"J/+MYC+e9+QAAPkoRlhNN2LFNnUB\", \"raw_message\": \"榜一是花钱 不是段位\", \"message_type\": \"group\"}','花钱',1,'2022-07-06 07:15:01',NULL),(20,'202276151836164','{\"seq\": 63795, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 343032965, \"time\": 1657091916, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 798947300, \"nickname\": \"same\"}, \"message\": [{\"text\": \"玩游戏都这么花钱\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 798947300, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE前端划水群\", \"message_id\": \"J/+MYC+e9+QAAPkzFHJEhWLFN0wB\", \"raw_message\": \"玩游戏都这么花钱\", \"message_type\": \"group\"}','花钱',1,'2022-07-06 07:18:36',NULL),(21,'20227615252135','{\"seq\": 33347, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 31932092, \"time\": 1657092301, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIJDAec+vGLFOM0B\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 07:25:02',NULL),(22,'202276152656124','{\"seq\": 5085, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1485965848, \"time\": 1657092415, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 581532578, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/小程序外包交流\", \"message_id\": \"Iql7okN01uwAABPdWJIKGGLFOT8B\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 07:26:56',NULL),(23,'202276152716164','{\"seq\": 6264, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 243631117, \"time\": 1657092436, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABh4DoWEDWLFOVQB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 07:27:16',NULL),(24,'202276154343118','{\"seq\": 62100, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2869100267, \"time\": 1657093423, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 31, \"sex\": \"male\", \"area\": \"大同\", \"card\": \"\", \"role\": \"member\", \"level\": 5, \"title\": \"\", \"user_id\": 924289941, \"nickname\": \"愿随风丶飘雪\"}, \"message\": [{\"text\": \"运行不了 报上错了 根据错误解决问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 924289941, \"group_id\": 814228233, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"DCloud原生开发者群2\", \"message_id\": \"MIgjCTcXi5UAAPKUqwL+62LFPS8B\", \"raw_message\": \"运行不了 报上错了 根据错误解决问题\", \"message_type\": \"group\"}','解决问题',1,'2022-07-06 07:43:43',NULL),(25,'202276154811153','{\"seq\": 69330, \"atme\": false, \"font\": \"宋体\", \"rand\": 1542245335, \"time\": 1657093691, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2370701338, \"nickname\": \".\"}, \"message\": [{\"qq\": 330833100, \"text\": \"@ \", \"type\": \"at\"}, {\"text\": \" 付费咨询吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2370701338, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdY1OCBoAAQ7SW+zL12LFPjsB\", \"raw_message\": \"@  付费咨询吗\", \"message_type\": \"group\"}','付费',1,'2022-07-06 07:48:11',NULL),(26,'20227615492125','{\"seq\": 69331, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 814399942, \"time\": 1657093742, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 16, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1412167808, \"nickname\": \"初\"}, \"message\": [{\"text\": \"咨询还要付费的嘛/emm\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1412167808, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdVQr+IAAAQ7TMIrBxmLFPm4B\", \"raw_message\": \"咨询还要付费的嘛/emm\", \"message_type\": \"group\"}','付费',1,'2022-07-06 07:49:02',NULL),(27,'20227616316144','{\"seq\": 172642, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2176913658, \"time\": 1657094596, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 9035995, \"nickname\": \"  \"}, \"message\": [{\"text\": \"有没有高手帮忙看下,这两个为什么顶部没有对齐?? .div1 {\\r width: 100px; height: 100px;\\r border: 1px solid blue;\\r\\tfloat:left;\\r}\\r\\r.div2 {\\r width: 200px; height: 100px; \\r border: 1px solid red;\\r\\tfloat: right;\\r}\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 9035995, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIQCJ4NsAAqJigcEQ+mLFQcQB\", \"raw_message\": \"有没有高手帮忙看下,这两个为什么顶部没有对齐?? .div1 {\\r width: 100px; height: 100px;\\r border: 1px solid blue;\\r\\tfloat:left;\\r}\\r\\r.div2 {\\r width: 200px; height: 100px; \\r border: 1px solid red;\\r\\tfloat: right;\\r}\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 08:03:16',NULL),(28,'20227616419181','{\"seq\": 93192, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3237097396, \"time\": 1657094659, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 36, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 445444613, \"nickname\": \"Ken\"}, \"message\": [{\"text\": \"有哪位遇到吗,帮忙指点一下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 445444613, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp9xqM8gUAAWwIwPIvtGLFQgMB\", \"raw_message\": \"有哪位遇到吗,帮忙指点一下\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 08:04:19',NULL),(29,'20227616619174','{\"seq\": 285345, \"atme\": false, \"font\": \"宋体\", \"rand\": 399040176, \"time\": 1657094779, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"前端小白梁帅帅\", \"role\": \"admin\", \"level\": 5, \"title\": \"\", \"user_id\": 992374163, \"nickname\": \"如梦初醒、\"}, \"source\": {\"seq\": 285339, \"rand\": 0, \"time\": 1657093133, \"message\": \"@卡色(提问前请仔细看完群公告,否则不会回) 把他管理员\", \"user_id\": 2855892566}, \"message\": [{\"qq\": 2855892566, \"text\": \"@太原-蓝多(姑苏蓝氏)\", \"type\": \"at\"}, {\"text\": \" 萌新遇到问题,我没搞过,不知道如何回答,所以求助更🐮的人,心想蓝兄应该知道,所以希望蓝兄可以帮帮萌新,我错了🐴\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 992374163, \"group_id\": 316911865, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"ng-alain\", \"message_id\": \"EuOw+TsmbZMABFqhF8jesGLFQnsB\", \"raw_message\": \"@太原-蓝多(姑苏蓝氏) 萌新遇到问题,我没搞过,不知道如何回答,所以求助更🐮的人,心想蓝兄应该知道,所以希望蓝兄可以帮帮萌新,我错了🐴\", \"message_type\": \"group\"}','求助',1,'2022-07-06 08:06:19',NULL),(30,'202276161333126','{\"seq\": 9173, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 367361403, \"time\": 1657095213, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 55141448, \"nickname\": \"Qmo\"}, \"message\": [{\"text\": \"有人接单吗?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 55141448, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaANJZEgAACPVFeV9e2LFRC0B\", \"raw_message\": \"有人接单吗?\", \"message_type\": \"group\"}','人接单',1,'2022-07-06 08:13:33',NULL),(31,'20227616179126','{\"seq\": 69340, \"atme\": false, \"font\": \"宋体\", \"rand\": 1255613968, \"time\": 1657095429, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2370701338, \"nickname\": \".\"}, \"message\": [{\"text\": \"付费吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2370701338, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdY1OCBoAAQ7cStcmEGLFRQUB\", \"raw_message\": \"付费吗\", \"message_type\": \"group\"}','付费',1,'2022-07-06 08:17:09',NULL),(32,'202276162553130','{\"seq\": 514077, \"atme\": false, \"font\": \"宋体\", \"rand\": 288152282, \"time\": 1657095953, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 67, \"sex\": \"male\", \"area\": \"铜仁\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2206831260, \"nickname\": \"Code-Killer\"}, \"message\": [{\"text\": \"有没有会vue的 ,帮忙跑个项目\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2206831260, \"group_id\": 538246944, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JS、Vue、Element-UI技术栈\", \"message_id\": \"IBT/IIOJkpwAB9gdESza2mLFRxEB\", \"raw_message\": \"有没有会vue的 ,帮忙跑个项目\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 08:25:53',NULL),(33,'202276162558151','{\"seq\": 514078, \"atme\": false, \"font\": \"宋体\", \"rand\": 1368737158, \"time\": 1657095958, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 67, \"sex\": \"male\", \"area\": \"铜仁\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2206831260, \"nickname\": \"Code-Killer\"}, \"message\": [{\"text\": \"有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2206831260, \"group_id\": 538246944, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JS、Vue、Element-UI技术栈\", \"message_id\": \"IBT/IIOJkpwAB9geUZVFhmLFRxYB\", \"raw_message\": \"有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-06 08:25:58',NULL),(34,'202276162747140','{\"seq\": 514091, \"atme\": false, \"font\": \"宋体\", \"rand\": 1873006267, \"time\": 1657096067, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 67, \"sex\": \"male\", \"area\": \"铜仁\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2206831260, \"nickname\": \"Code-Killer\"}, \"message\": [{\"text\": \"有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2206831260, \"group_id\": 538246944, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JS、Vue、Element-UI技术栈\", \"message_id\": \"IBT/IIOJkpwAB9grb6POu2LFR4MB\", \"raw_message\": \"有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-06 08:27:47',NULL),(35,'202276162910163','{\"seq\": 368057, \"atme\": false, \"font\": \"宋体\", \"rand\": 1302408111, \"time\": 1657096149, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2973422410, \"text\": \"@。。。\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2562784371-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABZ25TaErr2LFR9UB\", \"raw_message\": \"@。。。 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 08:29:10',NULL),(36,'202276162913125','{\"seq\": 368059, \"atme\": false, \"font\": \"宋体\", \"rand\": 829655099, \"time\": 1657096153, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1711299469, \"text\": \"@怎么表达\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3069841251-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABZ27MXOIO2LFR9kB\", \"raw_message\": \"@怎么表达 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 08:29:13',NULL),(37,'202276162915120','{\"seq\": 368060, \"atme\": false, \"font\": \"宋体\", \"rand\": 447701017, \"time\": 1657096155, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2578405829, \"text\": \"@~_~神马→_→浮云\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3002808203-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABZ28Gq9gGWLFR9sB\", \"raw_message\": \"@~_~神马→_→浮云 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 08:29:15',NULL),(38,'202276162918147','{\"seq\": 368061, \"atme\": false, \"font\": \"宋体\", \"rand\": 1844476355, \"time\": 1657096158, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1246133242, \"text\": \"@丘山\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2973200524-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABZ29bfB5w2LFR94B\", \"raw_message\": \"@丘山 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 08:29:18',NULL),(39,'202276162920100','{\"seq\": 368062, \"atme\": false, \"font\": \"宋体\", \"rand\": 1653368351, \"time\": 1657096160, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 545701365, \"text\": \"@Ada\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2224883415-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABZ2+YoxmH2LFR+AB\", \"raw_message\": \"@Ada 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 08:29:20',NULL),(40,'202276162923105','{\"seq\": 368063, \"atme\": false, \"font\": \"宋体\", \"rand\": 910319781, \"time\": 1657096163, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1064563928, \"text\": \"@晨曦中的泡沫\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2815170514-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABZ2/NkJgpWLFR+MB\", \"raw_message\": \"@晨曦中的泡沫 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 08:29:23',NULL),(41,'202276162926145','{\"seq\": 368065, \"atme\": false, \"font\": \"宋体\", \"rand\": 207971108, \"time\": 1657096165, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1434506427, \"text\": \"@#\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2153803888-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABZ3BDGVjJGLFR+UB\", \"raw_message\": \"@# 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 08:29:26',NULL),(42,'202276162934124','{\"seq\": 368066, \"atme\": false, \"font\": \"宋体\", \"rand\": 1919595061, \"time\": 1657096174, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1683023613, \"text\": \"@img\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2700839396-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABZ3CcmqyNWLFR+4B\", \"raw_message\": \"@img 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 08:29:34',NULL),(43,'202276162935109','{\"seq\": 514096, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 634336288, \"time\": 1657096175, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"male\", \"area\": \"北京\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 644775769, \"nickname\": \"码与ta皆失\"}, \"message\": [{\"text\": \"我有一次在另一个群帮已老哥解决了一个问题 他说有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 644775769, \"group_id\": 538246944, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JS、Vue、Element-UI技术栈\", \"message_id\": \"IBT/ICZuf1kAB9gwJc80IGLFR+8B\", \"raw_message\": \"我有一次在另一个群帮已老哥解决了一个问题 他说有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-06 08:29:35',NULL),(44,'202276162937129','{\"seq\": 368067, \"atme\": false, \"font\": \"宋体\", \"rand\": 738178351, \"time\": 1657096177, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1464469181, \"text\": \"@✎﹏ℳ๓₯㎕@晴天の鈡\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2698293576-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABZ3DK/+1L2LFR/EB\", \"raw_message\": \"@✎﹏ℳ๓₯㎕@晴天の鈡 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 08:29:37',NULL),(45,'202276162940170','{\"seq\": 368068, \"atme\": false, \"font\": \"宋体\", \"rand\": 1420280878, \"time\": 1657096180, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2302865464, \"text\": \"@呸呸呸\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2721501333-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABZ3EVKfELmLFR/QB\", \"raw_message\": \"@呸呸呸 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 08:29:40',NULL),(46,'202276162951141','{\"seq\": 368070, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 613609980, \"time\": 1657096191, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 120, \"sex\": \"male\", \"area\": \"\", \"card\": \"李嘉图\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1102517143, \"nickname\": \"李嘉图\"}, \"message\": [{\"text\": \"接受付费咨询和付费写功能\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1102517143, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h60G3E5cABZ3GJJLx/GLFR/8B\", \"raw_message\": \"接受付费咨询和付费写功能\", \"message_type\": \"group\"}','付费',1,'2022-07-06 08:29:51',NULL),(47,'202276163034158','{\"seq\": 368075, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 994419443, \"time\": 1657096233, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 120, \"sex\": \"male\", \"area\": \"\", \"card\": \"李嘉图\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1102517143, \"nickname\": \"李嘉图\"}, \"message\": [{\"text\": \"讨论功能和实现的,需付费\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1102517143, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h60G3E5cABZ3LO0Wi82LFSCkB\", \"raw_message\": \"讨论功能和实现的,需付费\", \"message_type\": \"group\"}','付费',1,'2022-07-06 08:30:34',NULL),(48,'202276163927118','{\"seq\": 9215, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 944271075, \"time\": 1657096767, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1157355341, \"nickname\": \"Teo\"}, \"message\": [{\"text\": \"然后现在在帮忙做翻译/泪奔\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1157355341, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaET7100AACP/OEhu42LFSj8B\", \"raw_message\": \"然后现在在帮忙做翻译/泪奔\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 08:39:27',NULL),(49,'202276164133132','{\"seq\": 140384, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2334347577, \"time\": 1657096893, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 29, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2574604878, \"nickname\": \"Hades\"}, \"message\": [{\"text\": \"vue前端有接单的么?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2574604878, \"group_id\": 874933695, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,vue,小程序\", \"message_id\": \"NCZtv5l1Wk4AAiRgiyNROWLFSr0B\", \"raw_message\": \"vue前端有接单的么?\", \"message_type\": \"group\"}','有接单的',1,'2022-07-06 08:41:33',NULL),(50,'202276164513109','{\"seq\": 368266, \"atme\": false, \"font\": \"宋体\", \"rand\": 1270544190, \"time\": 1657097113, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2822967961, \"text\": \"@未晞☁\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2542372530-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABZ6KS7r3PmLFS5kB\", \"raw_message\": \"@未晞☁ 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 08:45:13',NULL),(51,'202276164724179','{\"seq\": 172662, \"atme\": false, \"font\": \"宋体\", \"rand\": 546949330, \"time\": 1657097244, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"天津\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1792636667, \"nickname\": \"时光不改旧人心丶\"}, \"message\": [{\"text\": \"为啥不花钱直接找别人写\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1792636667, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIWrZdvsAAqJ2IJnI0mLFTBwB\", \"raw_message\": \"为啥不花钱直接找别人写\", \"message_type\": \"group\"}','花钱',1,'2022-07-06 08:47:24',NULL),(52,'202276165656150','{\"seq\": 334810, \"atme\": false, \"font\": \"宋体\", \"rand\": 1054437169, \"time\": 1657097816, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1279848263, \"nickname\": \"٩(๑`н´๑)۶\"}, \"message\": [{\"text\": \"怎么白嫖付费壁纸啊,你们有知道的吗/汪汪\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1279848263, \"group_id\": 558925746, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue/javascript\", \"message_id\": \"IVCHskxI70cABRvaPtlvMWLFTlgB\", \"raw_message\": \"怎么白嫖付费壁纸啊,你们有知道的吗/汪汪\", \"message_type\": \"group\"}','付费',1,'2022-07-06 08:56:56',NULL),(53,'202276165949130','{\"seq\": 183077, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2272396348, \"time\": 1657097989, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"阿富汗\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1959079168, \"nickname\": \"拉闸吃大碗宽面\"}, \"message\": [{\"text\": \"越不动就花钱约\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1959079168, \"group_id\": 528214618, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Flutter_java_鸿蒙_Vue\", \"message_id\": \"H3vqWnTFLQAAAsslh3IEPGLFTwUB\", \"raw_message\": \"越不动就花钱约\", \"message_type\": \"group\"}','花钱',1,'2022-07-06 08:59:49',NULL),(54,'202276165956109','{\"seq\": 183078, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3722219431, \"time\": 1657097996, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"阿富汗\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1959079168, \"nickname\": \"拉闸吃大碗宽面\"}, \"message\": [{\"text\": \"约不动就花钱约\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1959079168, \"group_id\": 528214618, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Flutter_java_鸿蒙_Vue\", \"message_id\": \"H3vqWnTFLQAAAssm3dyPp2LFTwwB\", \"raw_message\": \"约不动就花钱约\", \"message_type\": \"group\"}','花钱',1,'2022-07-06 08:59:56',NULL),(55,'2022761727114','{\"seq\": 183079, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1490213890, \"time\": 1657098127, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 32, \"sex\": \"male\", \"area\": \"加纳\", \"card\": \"爱拱大白菜\", \"role\": \"admin\", \"level\": 4, \"title\": \"\", \"user_id\": 419876573, \"nickname\": \"爱拱大白菜\"}, \"message\": [{\"text\": \"能花钱就绝不费口水\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 419876573, \"group_id\": 528214618, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Flutter_java_鸿蒙_Vue\", \"message_id\": \"H3vqWhkGzt0AAssnWNLcAmLFT48B\", \"raw_message\": \"能花钱就绝不费口水\", \"message_type\": \"group\"}','花钱',1,'2022-07-06 09:02:07',NULL),(56,'2022761758123','{\"seq\": 5089, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1606590731, \"time\": 1657098308, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 137619737, \"nickname\": \"____真心守护\"}, \"message\": [{\"text\": \"有哪位大佬知道,小程序怎么实时监听日志吗,就和体验版调试一样,有赏金,拜托大佬们帮帮忙\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 137619737, \"group_id\": 581532578, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/小程序外包交流\", \"message_id\": \"Iql7oggz6RkAABPhX8KhC2LFUEQB\", \"raw_message\": \"有哪位大佬知道,小程序怎么实时监听日志吗,就和体验版调试一样,有赏金,拜托大佬们帮帮忙\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 09:05:08',NULL),(57,'202276171543110','{\"seq\": 93346, \"atme\": false, \"font\": \"黑体\", \"rand\": 2119857213, \"time\": 1657098943, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 32, \"sex\": \"male\", \"area\": \"恩施\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 317856446, \"nickname\": \"腥巴克 巴莱\"}, \"message\": [{\"text\": \"有没有人,有偿解决一个问题。\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 317856446, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp9xLyGr4AAWyiflp0PWLFUr8B\", \"raw_message\": \"有没有人,有偿解决一个问题。\", \"message_type\": \"group\"}','有偿',1,'2022-07-06 09:15:43',NULL),(58,'202276172115103','{\"seq\": 93377, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 392426808, \"time\": 1657099275, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 282944525, \"nickname\": \"_I do\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/282944525/871950839-2716829150-C1F388995684543FB3AC5A8ACCE95E27/0?term=2\", \"file\": \"c1f388995684543fb3ac5a8acce95e2713049-735-150.jpg\", \"type\": \"image\", \"asface\": false}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/282944525/871950839-2233677777-7B25F79D2E7FA43FBD9302C367AB4DF6/0?term=2\", \"file\": \"7b25f79d2e7fa43fbd9302c367ab4df647795-451-540.jpg\", \"type\": \"image\", \"asface\": false}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/282944525/871950839-2295260486-CAA01FE9D4C706A22DBC01A19DBFB03E/0?term=2\", \"file\": \"caa01fe9d4c706a22dbc01a19dbfb03e7213-725-46.jpg\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r 求助大佬 为什么 pinia 取对象值报错\", \"type\": \"text\"}, {\"qq\": 490272692, \"text\": \"@DCloud_UNI_HT\", \"type\": \"at\"}, {\"text\": \" 接客 接客\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 282944525, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp9xDdZA0AAWzBF2P1OGLFVAsB\", \"raw_message\": \"[图片][图片][图片]\\r 求助大佬 为什么 pinia 取对象值报错@DCloud_UNI_HT 接客 接客\", \"message_type\": \"group\"}','求助',1,'2022-07-06 09:21:15',NULL),(59,'202276172441135','{\"seq\": 368575, \"atme\": false, \"font\": \"宋体\", \"rand\": 1345044385, \"time\": 1657099481, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 824102465, \"text\": \"@竹林深处\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2523737369-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABZ+/UCu/oWLFVNkB\", \"raw_message\": \"@竹林深处 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 09:24:41',NULL),(60,'202276172711133','{\"seq\": 93413, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 2000700469, \"time\": 1657099631, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 28, \"sex\": \"unknown\", \"area\": \"昆明\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 869092599, \"nickname\": \"Case…\"}, \"message\": [{\"text\": \"哪位有经验的大佬帮忙看看,uni-cli的项目,npm nui-ui形式安装的,写在components公共组件内打包APP就黑框框叉叉\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 869092599, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp9zPNTPcAAWzld0BENWLFVW8B\", \"raw_message\": \"哪位有经验的大佬帮忙看看,uni-cli的项目,npm nui-ui形式安装的,写在components公共组件内打包APP就黑框框叉叉\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 09:27:11',NULL),(61,'202276173012174','{\"seq\": 93424, \"atme\": false, \"font\": \"方正硬笔行书简体_非压缩版\", \"rand\": 1913872904, \"time\": 1657099812, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"甘肃\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2749552387, \"nickname\": \"Archer久遇\"}, \"message\": [{\"qq\": 335611337, \"text\": \"@迷鹿\", \"type\": \"at\"}, {\"text\": \" 冷静下来,才好解决问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2749552387, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp96Pi1wMAAWzwchNiCGLFViQB\", \"raw_message\": \"@迷鹿 冷静下来,才好解决问题\", \"message_type\": \"group\"}','解决问题',1,'2022-07-06 09:30:12',NULL),(62,'20227618412149','{\"seq\": 93554, \"atme\": false, \"font\": \"宋体\", \"rand\": 541225128, \"time\": 1657101851, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 5, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1073983131, \"nickname\": \"ookami\"}, \"message\": [{\"qq\": 490272692, \"text\": \"@DCloud_UNI_HT\", \"type\": \"at\"}, {\"text\": \" 带佬 swipe action苹果错乱的bug一定帮忙看看哦 谢谢了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1073983131, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp90ADrpsAAW1yIEJwqGLFXhsB\", \"raw_message\": \"@DCloud_UNI_HT 带佬 swipe action苹果错乱的bug一定帮忙看看哦 谢谢了\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 10:04:12',NULL),(63,'20227618712158','{\"seq\": 172710, \"atme\": false, \"font\": \"汉仪蝶语体简\", \"rand\": 2235684711, \"time\": 1657102031, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"天津\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2215356327, \"nickname\": \"𝙎𝙪𝙥𝙧𝙚𝙢𝙚\"}, \"message\": [{\"text\": \"前端vue有没有bug啊,有偿帮看,太无聊了,不会不要钱/暗中观察\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2215356327, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIYQLp6cAAqKmhUHXZ2LFXs8B\", \"raw_message\": \"前端vue有没有bug啊,有偿帮看,太无聊了,不会不要钱/暗中观察\", \"message_type\": \"group\"}','有偿',1,'2022-07-06 10:07:12',NULL),(64,'202276181821176','{\"seq\": 172717, \"atme\": false, \"font\": \"宋体\", \"rand\": 1229878794, \"time\": 1657102700, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"哈尔滨\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1663798856, \"nickname\": \"软炸里脊杀手.\"}, \"message\": [{\"text\": \"知识付费\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1663798856, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIWMrjkgAAqKtSU52CmLFYWwB\", \"raw_message\": \"知识付费\", \"message_type\": \"group\"}','付费',1,'2022-07-06 10:18:21',NULL),(65,'202276183448105','{\"seq\": 1315975, \"atme\": false, \"font\": \"汉仪蝶语体简\", \"rand\": 1900333438, \"time\": 1657103687, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"天津\", \"card\": \"SKY[会照]顾人\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2215356327, \"nickname\": \"𝙎𝙪𝙥𝙧𝙚𝙢𝙚\"}, \"message\": [{\"text\": \"前端vue有没有bug啊,有偿帮看,太无聊了,不会不要钱/暗中观察\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2215356327, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcoQLp6cAFBSHcUTJfmLFZUcB\", \"raw_message\": \"前端vue有没有bug啊,有偿帮看,太无聊了,不会不要钱/暗中观察\", \"message_type\": \"group\"}','有偿',1,'2022-07-06 10:34:48',NULL),(66,'202276185931111','{\"seq\": 9501, \"atme\": false, \"font\": \"宋体\", \"rand\": 40681951, \"time\": 1657105170, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2504284982, \"nickname\": \"镜湖🌸🌸\"}, \"message\": [{\"text\": \"你要说有偿,别人就回帮你解决了😂/菜汪\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2504284982, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVgpVEWzYAACUdAmzB32LFaxIB\", \"raw_message\": \"你要说有偿,别人就回帮你解决了😂/菜汪\", \"message_type\": \"group\"}','有偿',1,'2022-07-06 10:59:31',NULL),(67,'202276194849130','{\"seq\": 37941, \"atme\": false, \"font\": \"宋体\", \"rand\": 1108771185, \"time\": 1657108129, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 916196375, \"nickname\": \"Nies\"}, \"message\": [{\"text\": \"贼牛逼,可惜对敲代码没啥帮助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 916196375, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBTacDBcAAJQ1QhaBcWLFdqEB\", \"raw_message\": \"贼牛逼,可惜对敲代码没啥帮助\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 11:48:49',NULL),(68,'202276195352103','{\"seq\": 69470, \"atme\": false, \"font\": \"宋体\", \"rand\": 1518647609, \"time\": 1657108432, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1622397549, \"nickname\": \"牧云\"}, \"message\": [{\"text\": \"谢谢大家的帮助 太感激了/捂脸\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1622397549, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdWCz0m0AAQ9eWoS5OWLFd9AB\", \"raw_message\": \"谢谢大家的帮助 太感激了/捂脸\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 11:53:52',NULL),(69,'202276201556150','{\"seq\": 369232, \"atme\": false, \"font\": \"宋体\", \"rand\": 236537089, \"time\": 1657109756, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 3600697339, \"text\": \"@ㅤ ⁢⁩\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2470641735-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaJQDhlFAWLFfPwB\", \"raw_message\": \"@ㅤ ⁢⁩ 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 12:15:56',NULL),(70,'20227620166160','{\"seq\": 369235, \"atme\": false, \"font\": \"宋体\", \"rand\": 1994125272, \"time\": 1657109766, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 305135569, \"text\": \"@丿~w~丿\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2307880517-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaJTdtvv2GLFfQYB\", \"raw_message\": \"@丿~w~丿 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 12:16:06',NULL),(71,'20227620167138','{\"seq\": 369236, \"atme\": false, \"font\": \"宋体\", \"rand\": 1006174994, \"time\": 1657109767, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 3336781131, \"text\": \"@Lino\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2795986772-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaJUO/kDEmLFfQcB\", \"raw_message\": \"@Lino 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 12:16:07',NULL),(72,'20227620169138','{\"seq\": 369237, \"atme\": false, \"font\": \"宋体\", \"rand\": 923624868, \"time\": 1657109769, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 897173639, \"text\": \"@L\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2497067747-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaJVNw1lpGLFfQkB\", \"raw_message\": \"@L 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 12:16:09',NULL),(73,'202276201611107','{\"seq\": 369238, \"atme\": false, \"font\": \"宋体\", \"rand\": 1875235946, \"time\": 1657109771, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 544378413, \"text\": \"@随波逐流\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2694064065-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaJWb8XUamLFfQsB\", \"raw_message\": \"@随波逐流 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 12:16:11',NULL),(74,'202276201614153','{\"seq\": 369239, \"atme\": false, \"font\": \"宋体\", \"rand\": 1192159733, \"time\": 1657109774, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1432201898, \"text\": \"@唯一\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2972887470-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaJXRw7p9WLFfQ4B\", \"raw_message\": \"@唯一 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 12:16:14',NULL),(75,'20227620282183','{\"seq\": 369338, \"atme\": false, \"font\": \"宋体\", \"rand\": 1485903519, \"time\": 1657110482, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 3352288689, \"text\": \"@ㅤ\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2175466901-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaK6WJEWn2LFf9IB\", \"raw_message\": \"@ㅤ 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 12:28:02',NULL),(76,'20227620352149','{\"seq\": 257965, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3170083668, \"time\": 1657110902, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3513289, \"nickname\": \"技术程序员\"}, \"message\": [{\"qq\": 1280285098, \"text\": \"@炎焱\", \"type\": \"at\"}, {\"text\": \" 付费上课嘛?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3513289, \"group_id\": 323480257, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"thinkphp交流tp5\", \"message_id\": \"E0fqwQA1m8kAA++tvPOjVGLFgXYB\", \"raw_message\": \"@炎焱 付费上课嘛?\", \"message_type\": \"group\"}','付费',1,'2022-07-06 12:35:02',NULL),(77,'202276205226171','{\"seq\": 369523, \"atme\": false, \"font\": \"宋体\", \"rand\": 1359468636, \"time\": 1657111946, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 460691495, \"text\": \"@Don Quixote\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2741500693-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaNzUQfYXGLFhYoB\", \"raw_message\": \"@Don Quixote 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 12:52:26',NULL),(78,'202276221138101','{\"seq\": 33359, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 843700978, \"time\": 1657116697, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 177335818, \"nickname\": \"ℳঞꦿ天道 ໌້ᮨ꧔ꦿ᭄\"}, \"message\": [{\"text\": \"有API接口 。加个功能,点击抓取信息 。到购物车-付款下单。让淘宝客,同时具备代下单功能 会的联系我,有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 177335818, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMAqR7goAAIJPMkna8mLFmBkB\", \"raw_message\": \"有API接口 。加个功能,点击抓取信息 。到购物车-付款下单。让淘宝客,同时具备代下单功能 会的联系我,有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-06 14:11:38',NULL),(79,'202276222420104','{\"seq\": 140402, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2973254169, \"time\": 1657117460, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 35, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 130899899, \"nickname\": \"惊才风逸\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/130899899/874933695-3156777753-0DCDEAF29FBB2245A9921FE8DC0180AB/0?term=2\", \"file\": \"0dcdeaf29fbb2245a9921fe8dc0180ab72271-818-710.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"有接单的吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 130899899, \"group_id\": 874933695, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,vue,小程序\", \"message_id\": \"NCZtvwfNX7sAAiRysThCGWLFmxQB\", \"raw_message\": \"[图片]有接单的吗\", \"message_type\": \"group\"}','有接单的',1,'2022-07-06 14:24:20',NULL),(80,'202276224548144','{\"seq\": 369984, \"atme\": false, \"font\": \"宋体\", \"rand\": 202638300, \"time\": 1657118747, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 515806064, \"text\": \"@GinJog-前端开发(接私活)\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2947385051-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaVADBQD3GLFoBsB\", \"raw_message\": \"@GinJog-前端开发(接私活) 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 14:45:48',NULL),(81,'20227623420175','{\"seq\": 33360, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1197583996, \"time\": 1657119860, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIJQR2GufGLFpHQB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 15:04:20',NULL),(82,'20227623436107','{\"seq\": 6269, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 911232442, \"time\": 1657119876, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABh9NlBNumLFpIQB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 15:04:36',NULL),(83,'20227623725183','{\"seq\": 370047, \"atme\": false, \"font\": \"宋体\", \"rand\": 1719719104, \"time\": 1657120045, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 623723889, \"text\": \"@訫の祈点\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3170492988-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaV/ZoDUwGLFpS0B\", \"raw_message\": \"@訫の祈点 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 15:07:25',NULL),(84,'202276231335176','{\"seq\": 370057, \"atme\": false, \"font\": \"宋体\", \"rand\": 2137633245, \"time\": 1657120415, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 523197572, \"text\": \"@橙\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2904425663-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaWJf2mx3WLFpp8B\", \"raw_message\": \"@橙 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 15:13:35',NULL),(85,'202276234956172','{\"seq\": 1317219, \"atme\": false, \"font\": \"宋体\", \"rand\": 1070778620, \"time\": 1657122596, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 40, \"sex\": \"male\", \"area\": \"南京\", \"card\": \"SKY[交流]祈点\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 623723889, \"nickname\": \"訫の祈点\"}, \"message\": [{\"text\": \"招聘信息:\\n岗位职责:\\n1、能独立负责项目模块的开发工作,负责项目代码编写\\n2、负责联调相关交易\\n任职要求:\\n1、全日制本科及以上学历,计算机相关专业;\\n2、3-5年以上相关岗位工作经验,有金融行业经验者优先;\\n3、扎实的前端基础:HTML5, CSS(3), ES5/ES6等;\\n4、熟悉Vue、Webpack、Node.js、ElementUI、Jqurey、Ajax、json等,并有完整Vue前端开发项目经验;\\n5、熟悉Vue前端开发完整流程与全局状态管理,能够独立搭建Vue前端项目,完成交互逻辑开发、获取数据页面渲染等工作;\\n6、具有较强的责任心和工作主动性,良好的沟通表达能力,团队协作中乐于分享和帮助他人;\\n8、能接受全国范围内出差;\\n9、公司地点:南京\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 623723889, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphciUtRXEAFBljP9LI/GLFryQB\", \"raw_message\": \"招聘信息:\\n岗位职责:\\n1、能独立负责项目模块的开发工作,负责项目代码编写\\n2、负责联调相关交易\\n任职要求:\\n1、全日制本科及以上学历,计算机相关专业;\\n2、3-5年以上相关岗位工作经验,有金融行业经验者优先;\\n3、扎实的前端基础:HTML5, CSS(3), ES5/ES6等;\\n4、熟悉Vue、Webpack、Node.js、ElementUI、Jqurey、Ajax、json等,并有完整Vue前端开发项目经验;\\n5、熟悉Vue前端开发完整流程与全局状态管理,能够独立搭建Vue前端项目,完成交互逻辑开发、获取数据页面渲染等工作;\\n6、具有较强的责任心和工作主动性,良好的沟通表达能力,团队协作中乐于分享和帮助他人;\\n8、能接受全国范围内出差;\\n9、公司地点:南京\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 15:49:56',NULL),(86,'20227623507143','{\"seq\": 370059, \"atme\": false, \"font\": \"宋体\", \"rand\": 1195923756, \"time\": 1657122607, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 40, \"sex\": \"male\", \"area\": \"南京\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 623723889, \"nickname\": \"訫の祈点\"}, \"message\": [{\"text\": \"招聘信息:\\n岗位职责:\\n1、能独立负责项目模块的开发工作,负责项目代码编写\\n2、负责联调相关交易\\n任职要求:\\n1、全日制本科及以上学历,计算机相关专业;\\n2、3-5年以上相关岗位工作经验,有金融行业经验者优先;\\n3、扎实的前端基础:HTML5, CSS(3), ES5/ES6等;\\n4、熟悉Vue、Webpack、Node.js、ElementUI、Jqurey、Ajax、json等,并有完整Vue前端开发项目经验;\\n5、熟悉Vue前端开发完整流程与全局状态管理,能够独立搭建Vue前端项目,完成交互逻辑开发、获取数据页面渲染等工作;\\n6、具有较强的责任心和工作主动性,良好的沟通表达能力,团队协作中乐于分享和帮助他人;\\n8、能接受全国范围内出差;\\n9、公司地点:南京\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 623723889, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6yUtRXEABaWLR0hZLGLFry8B\", \"raw_message\": \"招聘信息:\\n岗位职责:\\n1、能独立负责项目模块的开发工作,负责项目代码编写\\n2、负责联调相关交易\\n任职要求:\\n1、全日制本科及以上学历,计算机相关专业;\\n2、3-5年以上相关岗位工作经验,有金融行业经验者优先;\\n3、扎实的前端基础:HTML5, CSS(3), ES5/ES6等;\\n4、熟悉Vue、Webpack、Node.js、ElementUI、Jqurey、Ajax、json等,并有完整Vue前端开发项目经验;\\n5、熟悉Vue前端开发完整流程与全局状态管理,能够独立搭建Vue前端项目,完成交互逻辑开发、获取数据页面渲染等工作;\\n6、具有较强的责任心和工作主动性,良好的沟通表达能力,团队协作中乐于分享和帮助他人;\\n8、能接受全国范围内出差;\\n9、公司地点:南京\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 15:50:07',NULL),(87,'202276235015121','{\"seq\": 69487, \"atme\": false, \"font\": \"宋体\", \"rand\": 1794270271, \"time\": 1657122615, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 40, \"sex\": \"male\", \"area\": \"南京\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 623723889, \"nickname\": \"訫の祈点\"}, \"message\": [{\"text\": \"招聘信息:\\n岗位职责:\\n1、能独立负责项目模块的开发工作,负责项目代码编写\\n2、负责联调相关交易\\n任职要求:\\n1、全日制本科及以上学历,计算机相关专业;\\n2、3-5年以上相关岗位工作经验,有金融行业经验者优先;\\n3、扎实的前端基础:HTML5, CSS(3), ES5/ES6等;\\n4、熟悉Vue、Webpack、Node.js、ElementUI、Jqurey、Ajax、json等,并有完整Vue前端开发项目经验;\\n5、熟悉Vue前端开发完整流程与全局状态管理,能够独立搭建Vue前端项目,完成交互逻辑开发、获取数据页面渲染等工作;\\n6、具有较强的责任心和工作主动性,良好的沟通表达能力,团队协作中乐于分享和帮助他人;\\n8、能接受全国范围内出差;\\n9、公司地点:南京\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 623723889, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdSUtRXEAAQ9vavJkP2LFrzcB\", \"raw_message\": \"招聘信息:\\n岗位职责:\\n1、能独立负责项目模块的开发工作,负责项目代码编写\\n2、负责联调相关交易\\n任职要求:\\n1、全日制本科及以上学历,计算机相关专业;\\n2、3-5年以上相关岗位工作经验,有金融行业经验者优先;\\n3、扎实的前端基础:HTML5, CSS(3), ES5/ES6等;\\n4、熟悉Vue、Webpack、Node.js、ElementUI、Jqurey、Ajax、json等,并有完整Vue前端开发项目经验;\\n5、熟悉Vue前端开发完整流程与全局状态管理,能够独立搭建Vue前端项目,完成交互逻辑开发、获取数据页面渲染等工作;\\n6、具有较强的责任心和工作主动性,良好的沟通表达能力,团队协作中乐于分享和帮助他人;\\n8、能接受全国范围内出差;\\n9、公司地点:南京\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 15:50:15',NULL),(88,'202276235238117','{\"seq\": 370061, \"atme\": false, \"font\": \"宋体\", \"rand\": 241829177, \"time\": 1657122757, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 3255297295, \"text\": \"@Red Pean\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2443602112-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaWNDmoFOWLFr8UB\", \"raw_message\": \"@Red Pean 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 15:52:38',NULL),(89,'2022770514166','{\"seq\": 370111, \"atme\": false, \"font\": \"宋体\", \"rand\": 680093516, \"time\": 1657123514, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 40, \"sex\": \"male\", \"area\": \"南京\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 623723889, \"nickname\": \"訫の祈点\"}, \"message\": [{\"text\": \"招聘信息:\\n岗位职责:\\n1、能独立负责项目模块的开发工作,负责项目代码编写\\n2、负责联调相关交易\\n任职要求:\\n1、全日制本科及以上学历,计算机相关专业;\\n2、3-5年以上相关岗位工作经验,有金融行业经验者优先;\\n3、扎实的前端基础:HTML5, CSS(3), ES5/ES6等;\\n4、熟悉Vue、Webpack、Node.js、ElementUI、Jqurey、Ajax、json等,并有完整Vue前端开发项目经验;\\n5、熟悉Vue前端开发完整流程与全局状态管理,能够独立搭建Vue前端项目,完成交互逻辑开发、获取数据页面渲染等工作;\\n6、具有较强的责任心和工作主动性,良好的沟通表达能力,团队协作中乐于分享和帮助他人;\\n8、能接受全国范围内出差;\\n9、公司地点:南京\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 623723889, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6yUtRXEABaW/KIlnTGLFsroB\", \"raw_message\": \"招聘信息:\\n岗位职责:\\n1、能独立负责项目模块的开发工作,负责项目代码编写\\n2、负责联调相关交易\\n任职要求:\\n1、全日制本科及以上学历,计算机相关专业;\\n2、3-5年以上相关岗位工作经验,有金融行业经验者优先;\\n3、扎实的前端基础:HTML5, CSS(3), ES5/ES6等;\\n4、熟悉Vue、Webpack、Node.js、ElementUI、Jqurey、Ajax、json等,并有完整Vue前端开发项目经验;\\n5、熟悉Vue前端开发完整流程与全局状态管理,能够独立搭建Vue前端项目,完成交互逻辑开发、获取数据页面渲染等工作;\\n6、具有较强的责任心和工作主动性,良好的沟通表达能力,团队协作中乐于分享和帮助他人;\\n8、能接受全国范围内出差;\\n9、公司地点:南京\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 16:05:14',NULL),(90,'2022770519178','{\"seq\": 1317243, \"atme\": false, \"font\": \"宋体\", \"rand\": 1120199222, \"time\": 1657123519, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 40, \"sex\": \"male\", \"area\": \"南京\", \"card\": \"SKY[交流]祈点\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 623723889, \"nickname\": \"訫の祈点\"}, \"message\": [{\"text\": \"招聘信息:\\n岗位职责:\\n1、能独立负责项目模块的开发工作,负责项目代码编写\\n2、负责联调相关交易\\n任职要求:\\n1、全日制本科及以上学历,计算机相关专业;\\n2、3-5年以上相关岗位工作经验,有金融行业经验者优先;\\n3、扎实的前端基础:HTML5, CSS(3), ES5/ES6等;\\n4、熟悉Vue、Webpack、Node.js、ElementUI、Jqurey、Ajax、json等,并有完整Vue前端开发项目经验;\\n5、熟悉Vue前端开发完整流程与全局状态管理,能够独立搭建Vue前端项目,完成交互逻辑开发、获取数据页面渲染等工作;\\n6、具有较强的责任心和工作主动性,良好的沟通表达能力,团队协作中乐于分享和帮助他人;\\n8、能接受全国范围内出差;\\n9、公司地点:南京\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 623723889, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphciUtRXEAFBl7QsTiNmLFsr8B\", \"raw_message\": \"招聘信息:\\n岗位职责:\\n1、能独立负责项目模块的开发工作,负责项目代码编写\\n2、负责联调相关交易\\n任职要求:\\n1、全日制本科及以上学历,计算机相关专业;\\n2、3-5年以上相关岗位工作经验,有金融行业经验者优先;\\n3、扎实的前端基础:HTML5, CSS(3), ES5/ES6等;\\n4、熟悉Vue、Webpack、Node.js、ElementUI、Jqurey、Ajax、json等,并有完整Vue前端开发项目经验;\\n5、熟悉Vue前端开发完整流程与全局状态管理,能够独立搭建Vue前端项目,完成交互逻辑开发、获取数据页面渲染等工作;\\n6、具有较强的责任心和工作主动性,良好的沟通表达能力,团队协作中乐于分享和帮助他人;\\n8、能接受全国范围内出差;\\n9、公司地点:南京\", \"message_type\": \"group\"}','帮助',1,'2022-07-06 16:05:19',NULL),(91,'2022770162117','{\"seq\": 1317271, \"atme\": false, \"font\": \"宋体\", \"rand\": 2062564862, \"time\": 1657124162, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"黔南\", \"card\": \"SKY[手撕]红黑树\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2018478661, \"nickname\": \"手撕红黑树\"}, \"message\": [{\"text\": \"有帮忙解答web课程作业的大佬吗有偿\", \"type\": \"text\"}, {\"id\": 118, \"text\": \"抱拳\", \"type\": \"face\"}, {\"id\": 118, \"text\": \"抱拳\", \"type\": \"face\"}], \"self_id\": 1841031740, \"user_id\": 2018478661, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcnhPikUAFBmXevA9/mLFtUIB\", \"raw_message\": \"有帮忙解答web课程作业的大佬吗有偿[抱拳][抱拳]\", \"message_type\": \"group\"}','有偿',1,'2022-07-06 16:16:02',NULL),(92,'20227701749189','{\"seq\": 1317287, \"atme\": false, \"font\": \"宋体\", \"rand\": 1824301856, \"time\": 1657124269, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"黔南\", \"card\": \"SKY[手撕]红黑树\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2018478661, \"nickname\": \"手撕红黑树\"}, \"message\": [{\"text\": \"有偿\", \"type\": \"text\"}, {\"id\": 118, \"text\": \"抱拳\", \"type\": \"face\"}], \"self_id\": 1841031740, \"user_id\": 2018478661, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcnhPikUAFBmnbLyjIGLFta0B\", \"raw_message\": \"有偿[抱拳]\", \"message_type\": \"group\"}','有偿',1,'2022-07-06 16:17:49',NULL),(93,'20227703831187','{\"seq\": 1317321, \"atme\": false, \"font\": \"宋体\", \"rand\": 492508955, \"time\": 1657125511, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"黔南\", \"card\": \"SKY[手撕]红黑树\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2018478661, \"nickname\": \"手撕红黑树\"}, \"message\": [{\"text\": \"有人可以帮忙吗\", \"type\": \"text\"}, {\"id\": 5, \"text\": \"流泪\", \"type\": \"face\"}, {\"text\": \"人傻钱多\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2018478661, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcnhPikUAFBnJHVsXG2LFuocB\", \"raw_message\": \"有人可以帮忙吗[流泪]人傻钱多\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 16:38:31',NULL),(94,'20227704325114','{\"seq\": 60065, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 323284715, \"time\": 1657125805, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"female\", \"area\": \"上海\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 503872565, \"nickname\": \"咕噜企业签名-鸭王(小)\"}, \"message\": [{\"text\": \"嗨呀!免费的企业签名送都送不出去更别说付费的了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 503872565, \"group_id\": 955416469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小程序app开发接单群\", \"message_id\": \"OPJ/lR4IfDUAAOqhE0Tu62LFu60B\", \"raw_message\": \"嗨呀!免费的企业签名送都送不出去更别说付费的了\", \"message_type\": \"group\"}','付费',1,'2022-07-06 16:43:25',NULL),(95,'20227705222168','{\"seq\": 1317352, \"atme\": false, \"font\": \"宋体\", \"rand\": 1726736801, \"time\": 1657126342, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"黔南\", \"card\": \"SKY[手撕]红黑树\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2018478661, \"nickname\": \"手撕红黑树\"}, \"message\": [{\"qq\": 691630958, \"text\": \"@SKY[交流]围城\", \"type\": \"at\"}, {\"text\": \" 大哥可以帮忙做作业吗\", \"type\": \"text\"}, {\"id\": 111, \"text\": \"可怜\", \"type\": \"face\"}], \"self_id\": 1841031740, \"user_id\": 2018478661, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcnhPikUAFBnoZuvpoWLFvcYB\", \"raw_message\": \"@SKY[交流]围城 大哥可以帮忙做作业吗[可怜]\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 16:52:22',NULL),(96,'20227705616163','{\"seq\": 6272, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1396195099, \"time\": 1657126576, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABiAUzg/G2LFvrAB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-06 16:56:16',NULL),(97,'20227782421172','{\"seq\": 370148, \"atme\": false, \"font\": \"宋体\", \"rand\": 333032242, \"time\": 1657153460, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 535144240, \"text\": \"@YY\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2800560534-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaXkE9mrMmLGJ7QB\", \"raw_message\": \"@YY 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 00:24:21',NULL),(98,'20227782423177','{\"seq\": 370149, \"atme\": false, \"font\": \"宋体\", \"rand\": 188220101, \"time\": 1657153463, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2138752849, \"text\": \"@ㅤ\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2236909523-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaXlCzgCxWLGJ7cB\", \"raw_message\": \"@ㅤ 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 00:24:23',NULL),(99,'20227782425148','{\"seq\": 370150, \"atme\": false, \"font\": \"宋体\", \"rand\": 6744584, \"time\": 1657153465, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 525647478, \"text\": \"@吴文弄墨\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3214834866-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaXmAGbqCGLGJ7kB\", \"raw_message\": \"@吴文弄墨 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 00:24:25',NULL),(100,'20227782432174','{\"seq\": 370151, \"atme\": false, \"font\": \"宋体\", \"rand\": 1306492447, \"time\": 1657153472, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1435689706, \"text\": \"@👣\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2375929097-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaXnTd9+H2LGJ8AB\", \"raw_message\": \"@👣 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 00:24:32',NULL),(101,'20227782435126','{\"seq\": 370152, \"atme\": false, \"font\": \"宋体\", \"rand\": 314607191, \"time\": 1657153475, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1535343290, \"text\": \"@后来呢。\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2655343973-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaXoEsCGV2LGJ8MB\", \"raw_message\": \"@后来呢。 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 00:24:35',NULL),(102,'20227782951116','{\"seq\": 1317793, \"atme\": false, \"font\": \"宋体\", \"rand\": 17282209, \"time\": 1657153791, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 1, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[交流]焯焯\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 211173165, \"nickname\": \"**\"}, \"message\": [{\"text\": \"付费,我手摸手教你\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 211173165, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcgyWPy0AFBuhAQe0oWLGKP8B\", \"raw_message\": \"付费,我手摸手教你\", \"message_type\": \"group\"}','付费',1,'2022-07-07 00:29:51',NULL),(103,'20227783141143','{\"seq\": 69489, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3641286007, \"time\": 1657153901, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 378722278, \"nickname\": \"昨日云烟\"}, \"message\": [{\"text\": \"小额有偿提供以下服务!需要的加好友备注!\\r各类平面设计、P图、抠图、动图制作等!10-30元起!\\r远程解决各类电脑、服务器、软件等各种问题!20-50元起!\\r建站、仿站300-500元起,\\r网站源码定制,设计,\\r解决网站服务器各类问题(小额),\\r先做后收费!需要的加好友备注联系!\\rV信:17190085155(同手机号)\\r专业安装SSL证书 配置 部署 可以做到评分满分A+9 支持百度认证!\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 378722278, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdRaS1+YAAQ9x2Qmdd2LGKW0B\", \"raw_message\": \"小额有偿提供以下服务!需要的加好友备注!\\r各类平面设计、P图、抠图、动图制作等!10-30元起!\\r远程解决各类电脑、服务器、软件等各种问题!20-50元起!\\r建站、仿站300-500元起,\\r网站源码定制,设计,\\r解决网站服务器各类问题(小额),\\r先做后收费!需要的加好友备注联系!\\rV信:17190085155(同手机号)\\r专业安装SSL证书 配置 部署 可以做到评分满分A+9 支持百度认证!\", \"message_type\": \"group\"}','有偿',1,'2022-07-07 00:31:41',NULL),(104,'20227785530145','{\"seq\": 370277, \"atme\": false, \"font\": \"宋体\", \"rand\": 1791340560, \"time\": 1657155330, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"正在学习WEB全栈\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 80418684, \"nickname\": \"o\"}, \"message\": [{\"text\": \"唯一区别就是,你花钱了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 80418684, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6wTLF3wABaZlasWwEGLGLwIB\", \"raw_message\": \"唯一区别就是,你花钱了\", \"message_type\": \"group\"}','花钱',1,'2022-07-07 00:55:30',NULL),(105,'2022779249157','{\"seq\": 124281, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 340559166, \"time\": 1657155769, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 30, \"sex\": \"male\", \"area\": \"上海\", \"card\": \"上海-豪情-不要@我\", \"role\": \"admin\", \"level\": 6, \"title\": \"\", \"user_id\": 66335966, \"nickname\": \"杰克\"}, \"message\": [{\"text\": \"结果虽然一样,各种npm库组合起来就会有问题,解决问题就产生不一样的代码。\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 66335966, \"group_id\": 7561206, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue-5群\", \"message_id\": \"AHNf9gP0NN4AAeV5FEyFPmLGMLkB\", \"raw_message\": \"结果虽然一样,各种npm库组合起来就会有问题,解决问题就产生不一样的代码。\", \"message_type\": \"group\"}','解决问题',1,'2022-07-07 01:02:49',NULL),(106,'20227791021170','{\"seq\": 27965, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1631565476, \"time\": 1657156221, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"北京-前端-七月\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 309820722, \"nickname\": \"七月夷则\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/309820722/650471018-2931602508-89E67A3DB96BBE50D32CABF5189295D5/0?term=2\", \"file\": \"89e67a3db96bbe50d32cabf5189295d5354418-2632-1324.jpg\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/309820722/650471018-2970185094-365155BA4E4DA2DC4745028D9D98B9C2/0?term=2\", \"file\": \"365155ba4e4da2dc4745028d9d98b9c2235213-1776-1340.jpg\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n\\n大佬们 加载正常的路由没问题,但是碰到这种路由上携带参数的路由就会报上图的错 能帮忙指点下么\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 309820722, \"group_id\": 650471018, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"微前端—qiankun,Web讨\", \"message_id\": \"JsVmahJ3fTIAAG09YT+2pGLGMn0B\", \"raw_message\": \"[图片]\\n[图片]\\n\\n大佬们 加载正常的路由没问题,但是碰到这种路由上携带参数的路由就会报上图的错 能帮忙指点下么\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 01:10:21',NULL),(107,'20227792258181','{\"seq\": 273270, \"atme\": false, \"font\": \"宋体\", \"rand\": 729181668, \"time\": 1657156978, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1487085404, \"nickname\": \"青蛙先森\"}, \"message\": [{\"text\": \"我觉得群里开个有偿帮助分群好些\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1487085404, \"group_id\": 692522608, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端Vue开发程序员贰\", \"message_id\": \"KUcOcFijH1wABCt2K3Zt5GLGNXIB\", \"raw_message\": \"我觉得群里开个有偿帮助分群好些\", \"message_type\": \"group\"}','有偿',1,'2022-07-07 01:22:58',NULL),(108,'2022779239121','{\"seq\": 273271, \"atme\": false, \"font\": \"宋体\", \"rand\": 1273584838, \"time\": 1657156989, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1487085404, \"nickname\": \"青蛙先森\"}, \"message\": [{\"text\": \"推动知识付费\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1487085404, \"group_id\": 692522608, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端Vue开发程序员贰\", \"message_id\": \"KUcOcFijH1wABCt3S+lcxmLGNX0B\", \"raw_message\": \"推动知识付费\", \"message_type\": \"group\"}','付费',1,'2022-07-07 01:23:09',NULL),(109,'20227792513189','{\"seq\": 1317936, \"atme\": false, \"font\": \"宋体\", \"rand\": 1630811643, \"time\": 1657157113, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 40, \"sex\": \"male\", \"area\": \"南京\", \"card\": \"SKY[交流]祈点\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 623723889, \"nickname\": \"訫の祈点\"}, \"message\": [{\"text\": \"招聘信息:\\n岗位职责:\\n1、能独立负责项目模块的开发工作,负责项目代码编写\\n2、负责联调相关交易\\n任职要求:\\n1、全日制本科及以上学历,计算机相关专业;\\n2、3-5年以上相关岗位工作经验,有金融行业经验者优先;\\n3、扎实的前端基础:HTML5, CSS(3), ES5/ES6等;\\n4、熟悉Vue、Webpack、Node.js、ElementUI、Jqurey、Ajax、json等,并有完整Vue前端开发项目经验;\\n5、熟悉Vue前端开发完整流程与全局状态管理,能够独立搭建Vue前端项目,完成交互逻辑开发、获取数据页面渲染等工作;\\n6、具有较强的责任心和工作主动性,良好的沟通表达能力,团队协作中乐于分享和帮助他人;\\n8、能接受全国范围内出差;\\n9、公司地点:南京\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 623723889, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphciUtRXEAFBwwYTQ1+2LGNfkB\", \"raw_message\": \"招聘信息:\\n岗位职责:\\n1、能独立负责项目模块的开发工作,负责项目代码编写\\n2、负责联调相关交易\\n任职要求:\\n1、全日制本科及以上学历,计算机相关专业;\\n2、3-5年以上相关岗位工作经验,有金融行业经验者优先;\\n3、扎实的前端基础:HTML5, CSS(3), ES5/ES6等;\\n4、熟悉Vue、Webpack、Node.js、ElementUI、Jqurey、Ajax、json等,并有完整Vue前端开发项目经验;\\n5、熟悉Vue前端开发完整流程与全局状态管理,能够独立搭建Vue前端项目,完成交互逻辑开发、获取数据页面渲染等工作;\\n6、具有较强的责任心和工作主动性,良好的沟通表达能力,团队协作中乐于分享和帮助他人;\\n8、能接受全国范围内出差;\\n9、公司地点:南京\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 01:25:13',NULL),(110,'20227792523155','{\"seq\": 370519, \"atme\": false, \"font\": \"宋体\", \"rand\": 578344297, \"time\": 1657157123, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 40, \"sex\": \"male\", \"area\": \"南京\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 623723889, \"nickname\": \"訫の祈点\"}, \"message\": [{\"text\": \"招聘信息:\\n岗位职责:\\n1、能独立负责项目模块的开发工作,负责项目代码编写\\n2、负责联调相关交易\\n任职要求:\\n1、全日制本科及以上学历,计算机相关专业;\\n2、3-5年以上相关岗位工作经验,有金融行业经验者优先;\\n3、扎实的前端基础:HTML5, CSS(3), ES5/ES6等;\\n4、熟悉Vue、Webpack、Node.js、ElementUI、Jqurey、Ajax、json等,并有完整Vue前端开发项目经验;\\n5、熟悉Vue前端开发完整流程与全局状态管理,能够独立搭建Vue前端项目,完成交互逻辑开发、获取数据页面渲染等工作;\\n6、具有较强的责任心和工作主动性,良好的沟通表达能力,团队协作中乐于分享和帮助他人;\\n8、能接受全国范围内出差;\\n9、公司地点:南京\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 623723889, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6yUtRXEABadXInjVaWLGNgMB\", \"raw_message\": \"招聘信息:\\n岗位职责:\\n1、能独立负责项目模块的开发工作,负责项目代码编写\\n2、负责联调相关交易\\n任职要求:\\n1、全日制本科及以上学历,计算机相关专业;\\n2、3-5年以上相关岗位工作经验,有金融行业经验者优先;\\n3、扎实的前端基础:HTML5, CSS(3), ES5/ES6等;\\n4、熟悉Vue、Webpack、Node.js、ElementUI、Jqurey、Ajax、json等,并有完整Vue前端开发项目经验;\\n5、熟悉Vue前端开发完整流程与全局状态管理,能够独立搭建Vue前端项目,完成交互逻辑开发、获取数据页面渲染等工作;\\n6、具有较强的责任心和工作主动性,良好的沟通表达能力,团队协作中乐于分享和帮助他人;\\n8、能接受全国范围内出差;\\n9、公司地点:南京\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 01:25:23',NULL),(111,'20227792529173','{\"seq\": 69508, \"atme\": false, \"font\": \"宋体\", \"rand\": 1508812022, \"time\": 1657157129, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 40, \"sex\": \"male\", \"area\": \"南京\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 623723889, \"nickname\": \"訫の祈点\"}, \"message\": [{\"text\": \"招聘信息:\\n岗位职责:\\n1、能独立负责项目模块的开发工作,负责项目代码编写\\n2、负责联调相关交易\\n任职要求:\\n1、全日制本科及以上学历,计算机相关专业;\\n2、3-5年以上相关岗位工作经验,有金融行业经验者优先;\\n3、扎实的前端基础:HTML5, CSS(3), ES5/ES6等;\\n4、熟悉Vue、Webpack、Node.js、ElementUI、Jqurey、Ajax、json等,并有完整Vue前端开发项目经验;\\n5、熟悉Vue前端开发完整流程与全局状态管理,能够独立搭建Vue前端项目,完成交互逻辑开发、获取数据页面渲染等工作;\\n6、具有较强的责任心和工作主动性,良好的沟通表达能力,团队协作中乐于分享和帮助他人;\\n8、能接受全国范围内出差;\\n9、公司地点:南京\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 623723889, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdSUtRXEAAQ+EWe6k9mLGNgkB\", \"raw_message\": \"招聘信息:\\n岗位职责:\\n1、能独立负责项目模块的开发工作,负责项目代码编写\\n2、负责联调相关交易\\n任职要求:\\n1、全日制本科及以上学历,计算机相关专业;\\n2、3-5年以上相关岗位工作经验,有金融行业经验者优先;\\n3、扎实的前端基础:HTML5, CSS(3), ES5/ES6等;\\n4、熟悉Vue、Webpack、Node.js、ElementUI、Jqurey、Ajax、json等,并有完整Vue前端开发项目经验;\\n5、熟悉Vue前端开发完整流程与全局状态管理,能够独立搭建Vue前端项目,完成交互逻辑开发、获取数据页面渲染等工作;\\n6、具有较强的责任心和工作主动性,良好的沟通表达能力,团队协作中乐于分享和帮助他人;\\n8、能接受全国范围内出差;\\n9、公司地点:南京\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 01:25:29',NULL),(112,'20227792741142','{\"seq\": 9402, \"atme\": false, \"font\": \"宋体\", \"rand\": 1932837100, \"time\": 1657157261, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 31, \"sex\": \"male\", \"area\": \"常州\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 397250846, \"nickname\": \"心梦无痕\"}, \"message\": [{\"text\": \"有没有大佬知道什么原因?有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 397250846, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaBetkR4AACS6czTA7GLGNo0B\", \"raw_message\": \"有没有大佬知道什么原因?有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-07 01:27:41',NULL),(113,'20227792926168','{\"seq\": 38652, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3201408490, \"time\": 1657157366, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"洛阳\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 872418562, \"nickname\": \"GCMG\"}, \"message\": [{\"text\": \"大佬求助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 872418562, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBTQADQIAAJb8vtGd6mLGNvYB\", \"raw_message\": \"大佬求助\", \"message_type\": \"group\"}','求助',1,'2022-07-07 01:29:26',NULL),(114,'20227793226173','{\"seq\": 65550, \"atme\": false, \"font\": \"楷体\", \"rand\": 2916219684, \"time\": 1657157546, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 641474653, \"nickname\": \"压力面前保持优雅\"}, \"message\": [{\"text\": \"彩礼和嫁妆都是两边家长给新人的帮助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 641474653, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE前端划水群\", \"message_id\": \"J/+MYCY8IF0AAQAOrdH7JGLGN6oB\", \"raw_message\": \"彩礼和嫁妆都是两边家长给新人的帮助\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 01:32:26',NULL),(115,'20227794754156','{\"seq\": 273278, \"atme\": false, \"font\": \"宋体\", \"rand\": 1580643577, \"time\": 1657158474, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"吉安\", \"card\": \"江西-零基础-阿猫阿狗\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1991224466, \"nickname\": \"▇▇▇▇▇▇▇▇▇▇▇▇\"}, \"message\": [{\"text\": \"我觉得资源付费是对的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1991224466, \"group_id\": 692522608, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端Vue开发程序员贰\", \"message_id\": \"KUcOcHavrJIABCt+Xja0+WLGO0oB\", \"raw_message\": \"我觉得资源付费是对的\", \"message_type\": \"group\"}','付费',1,'2022-07-07 01:47:54',NULL),(116,'20227794940174','{\"seq\": 273282, \"atme\": false, \"font\": \"宋体\", \"rand\": 5864671, \"time\": 1657158580, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1487085404, \"nickname\": \"青蛙先森\"}, \"message\": [{\"text\": \"想要帮忙,就给辛苦费\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1487085404, \"group_id\": 692522608, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端Vue开发程序员贰\", \"message_id\": \"KUcOcFijH1wABCuCAFl832LGO7QB\", \"raw_message\": \"想要帮忙,就给辛苦费\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 01:49:40',NULL),(117,'20227795258142','{\"seq\": 370698, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 202991867, \"time\": 1657158778, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1959762008, \"nickname\": \"Douze\"}, \"message\": [{\"text\": \"当时我说的事,之前我们的官网就是我独立进行的开发,也配合老大帮助移动端进行还\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1959762008, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h63TPmFgABagKDBlo+2LGPHoB\", \"raw_message\": \"当时我说的事,之前我们的官网就是我独立进行的开发,也配合老大帮助移动端进行还\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 01:52:58',NULL),(118,'20227795535106','{\"seq\": 93669, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 588055316, \"time\": 1657158934, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 2, \"sex\": \"male\", \"area\": \"南京\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 792282, \"nickname\": \"葫芦娃\"}, \"message\": [{\"text\": \"哪位大神帮忙看看啥错误呀\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 792282, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp9wAMFtoAAW3lIw0DFGLGPRYB\", \"raw_message\": \"哪位大神帮忙看看啥错误呀\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 01:55:35',NULL),(119,'20227710134152','{\"seq\": 124315, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3058505402, \"time\": 1657159294, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 30, \"sex\": \"male\", \"area\": \"上海\", \"card\": \"上海-豪情-不要@我\", \"role\": \"admin\", \"level\": 6, \"title\": \"\", \"user_id\": 66335966, \"nickname\": \"杰克\"}, \"message\": [{\"text\": \"不清楚的看在线的帮助文档。\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 66335966, \"group_id\": 7561206, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue-5群\", \"message_id\": \"AHNf9gP0NN4AAeWbtk0WumLGPn4B\", \"raw_message\": \"不清楚的看在线的帮助文档。\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 02:01:34',NULL),(120,'20227710941187','{\"seq\": 370746, \"atme\": false, \"font\": \"宋体\", \"rand\": 347493916, \"time\": 1657159781, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1797313443, \"text\": \"@一天又一天\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3035217476-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABag6FLZWHGLGQGUB\", \"raw_message\": \"@一天又一天 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 02:09:41',NULL),(121,'20227710943129','{\"seq\": 370747, \"atme\": false, \"font\": \"宋体\", \"rand\": 1502195433, \"time\": 1657159783, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1361045580, \"text\": \"@朝花\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3059633111-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABag7WYmu6WLGQGcB\", \"raw_message\": \"@朝花 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 02:09:43',NULL),(122,'202277101635171','{\"seq\": 9520, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4174758556, \"time\": 1657160195, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"邵杰\"}, \"message\": [{\"text\": \"有解决不了的bug吗,给点好处,加我,可以帮忙解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1336322173, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVgk+mqH0AACUw+NXCnGLGQgMB\", \"raw_message\": \"有解决不了的bug吗,给点好处,加我,可以帮忙解决\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 02:16:35',NULL),(123,'202277102712130','{\"seq\": 33367, \"atme\": false, \"font\": \"宋体\", \"rand\": 1886281036, \"time\": 1657160832, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIJXcG5dTGLGRIAB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 02:27:12',NULL),(124,'202277102718165','{\"seq\": 6277, \"atme\": false, \"font\": \"宋体\", \"rand\": 832084883, \"time\": 1657160838, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABiFMZibk2LGRIYB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 02:27:18',NULL),(125,'20227710425119','{\"seq\": 217538, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1132908661, \"time\": 1657161725, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1532750281, \"nickname\": \"来杯奶茶\"}, \"message\": [{\"text\": \"有大佬帮忙看一个bug吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1532750281, \"group_id\": 703531738, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Android Studio互助群\", \"message_id\": \"Ke8K2ltb6ckAA1HCQ4bQdWLGR/0B\", \"raw_message\": \"有大佬帮忙看一个bug吗\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 02:42:05',NULL),(126,'20227710429117','{\"seq\": 217539, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 137219047, \"time\": 1657161729, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1532750281, \"nickname\": \"来杯奶茶\"}, \"message\": [{\"text\": \"有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1532750281, \"group_id\": 703531738, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Android Studio互助群\", \"message_id\": \"Ke8K2ltb6ckAA1HDCC3L52LGSAEB\", \"raw_message\": \"有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-07 02:42:09',NULL),(127,'2022771173148','{\"seq\": 370887, \"atme\": false, \"font\": \"宋体\", \"rand\": 166222421, \"time\": 1657163223, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 534684120, \"text\": \"@夜寒花碎\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2381870480-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABajHCehaVWLGTdcB\", \"raw_message\": \"@夜寒花碎 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 03:07:03',NULL),(128,'2022771174160','{\"seq\": 370888, \"atme\": false, \"font\": \"宋体\", \"rand\": 1238013348, \"time\": 1657163224, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 52346768, \"text\": \"@十二月夜\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2263672091-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABajIScqVpGLGTdgB\", \"raw_message\": \"@十二月夜 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 03:07:04',NULL),(129,'2022771177128','{\"seq\": 370889, \"atme\": false, \"font\": \"宋体\", \"rand\": 1084629407, \"time\": 1657163226, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 724775278, \"text\": \"@Nancy\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2444976531-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABajJQKYhn2LGTdoB\", \"raw_message\": \"@Nancy 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 03:07:07',NULL),(130,'20227711930177','{\"seq\": 1318185, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2319951707, \"time\": 1657163370, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 14, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[滚滚]红尘\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 305456426, \"nickname\": \"滚滚红尘\"}, \"message\": [{\"text\": \"有没有前端铁子 晚上有时间帮忙面试的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 305456426, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphchI05SoAFB0pikenW2LGTmoB\", \"raw_message\": \"有没有前端铁子 晚上有时间帮忙面试的\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 03:09:30',NULL),(131,'202277111015130','{\"seq\": 1318190, \"atme\": false, \"font\": \"宋体\", \"rand\": 959260799, \"time\": 1657163415, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 1, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[交流]焯焯\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 211173165, \"nickname\": \"**\"}, \"message\": [{\"text\": \"帮忙面试可还行\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 211173165, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcgyWPy0AFB0uOS0of2LGTpcB\", \"raw_message\": \"帮忙面试可还行\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 03:10:15',NULL),(132,'202277111032184','{\"seq\": 1318192, \"atme\": false, \"font\": \"宋体\", \"rand\": 514482021, \"time\": 1657163432, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 5, \"sex\": \"male\", \"area\": \"广州\", \"card\": \"SKY[交流]俺后台打杂\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 690901127, \"nickname\": \"Benny\"}, \"message\": [{\"text\": \"也帮忙拿工资\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 690901127, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcikuUIcAFB0wHqpfZWLGTqgB\", \"raw_message\": \"也帮忙拿工资\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 03:10:32',NULL),(133,'202277111141150','{\"seq\": 1318201, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1880069128, \"time\": 1657163501, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 14, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[滚滚]红尘\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 305456426, \"nickname\": \"滚滚红尘\"}, \"message\": [{\"text\": \"有时间 帮忙面试的 私聊我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 305456426, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphchI05SoAFB05cA+UCGLGTu0B\", \"raw_message\": \"有时间 帮忙面试的 私聊我\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 03:11:41',NULL),(134,'202277111847186','{\"seq\": 1318235, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 766803149, \"time\": 1657163927, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[交流]长安\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1099177965, \"nickname\": \"长安‘’\"}, \"message\": [{\"text\": \"你要找人帮忙面试嘛? 支持一V多模式\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1099177965, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphckGEH+0AFB1bLbR8zWLGUJcB\", \"raw_message\": \"你要找人帮忙面试嘛? 支持一V多模式\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 03:18:47',NULL),(135,'202277113224128','{\"seq\": 9537, \"atme\": false, \"font\": \"宋体\", \"rand\": 1470164193, \"time\": 1657164744, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 957445114, \"nickname\": \"HoMeTown🐵\"}, \"message\": [{\"text\": \"有问题的话可以直接发公众号里,我看到了可以帮忙看看\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 957445114, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVgjkRc/oAACVBV6Ds4WLGU8gB\", \"raw_message\": \"有问题的话可以直接发公众号里,我看到了可以帮忙看看\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 03:32:24',NULL),(136,'202277115054163','{\"seq\": 1318336, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1051641665, \"time\": 1657165854, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"female\", \"area\": \"新乡\", \"card\": \"SKY[心随]风飞\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1322307065, \"nickname\": \"心随风飞\"}, \"message\": [{\"text\": \"赶紧给我解决问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1322307065, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphck7QzfkAFB3APq7HQWLGWB4B\", \"raw_message\": \"赶紧给我解决问题\", \"message_type\": \"group\"}','解决问题',1,'2022-07-07 03:50:54',NULL),(137,'20227712220116','{\"seq\": 217545, \"atme\": false, \"font\": \"宋体\", \"rand\": 892739568, \"time\": 1657166540, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1532750281, \"nickname\": \"来杯奶茶\"}, \"message\": [{\"text\": \"帮忙看看可以吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1532750281, \"group_id\": 703531738, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Android Studio互助群\", \"message_id\": \"Ke8K2ltb6ckAA1HJNTYf8GLGWswB\", \"raw_message\": \"帮忙看看可以吗\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 04:02:20',NULL),(138,'2022771254147','{\"seq\": 93912, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 281933219, \"time\": 1657166703, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1966500135, \"nickname\": \"ccc20190701\"}, \"message\": [{\"qq\": 490272692, \"text\": \"@DCloud_UNI_HT\", \"type\": \"at\"}, {\"text\": \" \", \"type\": \"text\"}, {\"qq\": 786272836, \"text\": \"@DCloud_UNI_LXH\", \"type\": \"at\"}, {\"text\": \" 帮忙看看怎么回事\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1966500135, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp93U2aScAAW7YEM31o2LGW28B\", \"raw_message\": \"@DCloud_UNI_HT @DCloud_UNI_LXH 帮忙看看怎么回事\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 04:05:04',NULL),(139,'202277121316129','{\"seq\": 39197, \"atme\": false, \"font\": \"宋体\", \"rand\": 3405516158, \"time\": 1657167196, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 49, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 804834513, \"nickname\": \"大山\"}, \"message\": [{\"text\": \"求助一下,nginx部署vue,访问接口404,\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 804834513, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBS/4zNEAAJkdyvwNfmLGXVwB\", \"raw_message\": \"求助一下,nginx部署vue,访问接口404,\", \"message_type\": \"group\"}','求助',1,'2022-07-07 04:13:16',NULL),(140,'202277121410158','{\"seq\": 9037, \"atme\": false, \"font\": \"宋体\", \"rand\": 2863978133, \"time\": 1657167250, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 49, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 804834513, \"nickname\": \"大山\"}, \"message\": [{\"text\": \"求助一下,nginx部署vue,访问接口404,\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 804834513, \"group_id\": 522976012, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue3生态学习交流\", \"message_id\": \"Hyv7DC/4zNEAACNNqrTWlWLGXZIB\", \"raw_message\": \"求助一下,nginx部署vue,访问接口404,\", \"message_type\": \"group\"}','求助',1,'2022-07-07 04:14:10',NULL),(141,'202277121511187','{\"seq\": 947490, \"atme\": false, \"font\": \"宋体\", \"rand\": 1496003064, \"time\": 1657167311, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"上海\", \"card\": \"郑州Java从此不做舔狗\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3175449063, \"nickname\": \"加油,董董同学\"}, \"message\": [{\"text\": \"名 人心成见就是一个大山,哪吒之魔童降世中,申公豹这么努力,12金仙也不是他的,敖丙这么善良,帮助李靖抑制住了哪吒,但是被李靖发现他是龙族,就要对他赶紧杀尽,他以为善良可以获得地位,可以要别人不怎么样,但是人们心中龙族就是不是好东西,哪吒说我命有我不由天,他可知道他是李靖的孩子,就是再差,人家讨厌他,但是,他也可以靠自己随随便便当上神仙,而敖丙,再努力,永远改变不了,就是善良去帮助大家不被气头哪吒杀死,也不会改变他,而哪吒就靠随随便便打倒敖丙就改变大家对他的看法,所有我命由我不由天,真是一个假话,可笑不可笑\", \"type\": \"text\"}, {\"qq\": 3165427409, \"text\": \"@福州-名\", \"type\": \"at\"}], \"self_id\": 1841031740, \"user_id\": 3175449063, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB71FgecADnUiWSsx+GLGXc8B\", \"raw_message\": \"名 人心成见就是一个大山,哪吒之魔童降世中,申公豹这么努力,12金仙也不是他的,敖丙这么善良,帮助李靖抑制住了哪吒,但是被李靖发现他是龙族,就要对他赶紧杀尽,他以为善良可以获得地位,可以要别人不怎么样,但是人们心中龙族就是不是好东西,哪吒说我命有我不由天,他可知道他是李靖的孩子,就是再差,人家讨厌他,但是,他也可以靠自己随随便便当上神仙,而敖丙,再努力,永远改变不了,就是善良去帮助大家不被气头哪吒杀死,也不会改变他,而哪吒就靠随随便便打倒敖丙就改变大家对他的看法,所有我命由我不由天,真是一个假话,可笑不可笑@福州-名\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 04:15:11',NULL),(142,'202277121759122','{\"seq\": 947493, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1677905363, \"time\": 1657167479, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"female\", \"area\": \"枣庄\", \"card\": \"草莓大师\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 2296584019, \"nickname\": \"-周升彬-\"}, \"message\": [{\"text\": \"名 人心成见就是一个大山,哪吒之魔童降世中,申公豹这么努力,12金仙也不是他的,敖丙这么善良,帮助李靖抑制住了哪吒,但是被李靖发现他是龙族,就要对他赶紧杀尽,他以为善良可以获得地位,可以要别人不怎么样,但是人们心中龙族就是不是好东西,哪吒说我命有我不由天,他可知道他是李靖的孩子,就是再差,人家讨厌他,但是,他也可以靠自己随随便便当上神仙,而敖丙,再努力,永远改变不了,就是善良去帮助大家不被气头哪吒杀死,也不会改变他,而哪吒就靠随随便便打倒敖丙就改变大家对他的看法,所有我命由我不由天,真是一个假话,可笑不可笑\", \"type\": \"text\"}, {\"qq\": 3165427409, \"text\": \"@福州-名\", \"type\": \"at\"}], \"self_id\": 1841031740, \"user_id\": 2296584019, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB4jjF1MADnUlZALN02LGXncB\", \"raw_message\": \"名 人心成见就是一个大山,哪吒之魔童降世中,申公豹这么努力,12金仙也不是他的,敖丙这么善良,帮助李靖抑制住了哪吒,但是被李靖发现他是龙族,就要对他赶紧杀尽,他以为善良可以获得地位,可以要别人不怎么样,但是人们心中龙族就是不是好东西,哪吒说我命有我不由天,他可知道他是李靖的孩子,就是再差,人家讨厌他,但是,他也可以靠自己随随便便当上神仙,而敖丙,再努力,永远改变不了,就是善良去帮助大家不被气头哪吒杀死,也不会改变他,而哪吒就靠随随便便打倒敖丙就改变大家对他的看法,所有我命由我不由天,真是一个假话,可笑不可笑@福州-名\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 04:17:59',NULL),(143,'202277124858123','{\"seq\": 39233, \"atme\": false, \"font\": \"宋体\", \"rand\": 332458716, \"time\": 1657169338, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"成都-hey\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 285036710, \"nickname\": \"hey\"}, \"message\": [{\"text\": \"不是就解决问题了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 285036710, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBRD9UKYAAJlBE9Dq3GLGZboB\", \"raw_message\": \"不是就解决问题了\", \"message_type\": \"group\"}','解决问题',1,'2022-07-07 04:48:58',NULL),(144,'202277125227155','{\"seq\": 371344, \"atme\": false, \"font\": \"宋体\", \"rand\": 1274216088, \"time\": 1657169547, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1760326146, \"text\": \"@🌹🌹心跳多久\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2873015912-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaqQS/L+mGLGZosB\", \"raw_message\": \"@🌹🌹心跳多久 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 04:52:27',NULL),(145,'202277125230101','{\"seq\": 371345, \"atme\": false, \"font\": \"宋体\", \"rand\": 922135036, \"time\": 1657169550, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 969710949, \"text\": \"@孤寂°\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2419730805-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaqRNvap/GLGZo4B\", \"raw_message\": \"@孤寂° 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 04:52:30',NULL),(146,'202277125233152','{\"seq\": 371346, \"atme\": false, \"font\": \"宋体\", \"rand\": 291332232, \"time\": 1657169553, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 3290018726, \"text\": \"@乖乖❤\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3087957338-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaqSEV1giGLGZpEB\", \"raw_message\": \"@乖乖❤ 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 04:52:33',NULL),(147,'202277125236188','{\"seq\": 371347, \"atme\": false, \"font\": \"宋体\", \"rand\": 1644529922, \"time\": 1657169556, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2794656673, \"text\": \"@phenomenon\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2893318122-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaqTYgWJAmLGZpQB\", \"raw_message\": \"@phenomenon 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 04:52:36',NULL),(148,'202277125238142','{\"seq\": 371348, \"atme\": false, \"font\": \"宋体\", \"rand\": 267403763, \"time\": 1657169558, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1741313219, \"text\": \"@ㅤㅤㅤ\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3007577050-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaqUD/BB82LGZpYB\", \"raw_message\": \"@ㅤㅤㅤ 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 04:52:38',NULL),(149,'202277125239132','{\"seq\": 371349, \"atme\": false, \"font\": \"宋体\", \"rand\": 352440857, \"time\": 1657169559, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2676323460, \"text\": \"@咕噜咕噜水\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2398625638-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABaqVFQHSGWLGZpcB\", \"raw_message\": \"@咕噜咕噜水 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 04:52:39',NULL),(150,'202277131942107','{\"seq\": 172824, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2931007833, \"time\": 1657171182, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"邵杰\"}, \"message\": [{\"text\": \"有解决不了的bug吗,给点好处,加我,可以帮忙解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1336322173, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIU+mqH0AAqMYrrOhWWLGbO4B\", \"raw_message\": \"有解决不了的bug吗,给点好处,加我,可以帮忙解决\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 05:19:42',NULL),(151,'202277132646154','{\"seq\": 49126, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1885735228, \"time\": 1657171606, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"邵杰\"}, \"message\": [{\"text\": \"有解决不了的bug吗,给点好处,加我,可以帮忙解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1336322173, \"group_id\": 863981142, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"程序员接单群\", \"message_id\": \"M39OVk+mqH0AAL/mcGYJPGLGbpYB\", \"raw_message\": \"有解决不了的bug吗,给点好处,加我,可以帮忙解决\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 05:26:46',NULL),(152,'202277133327139','{\"seq\": 39278, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 196749232, \"time\": 1657172007, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 201519593, \"nickname\": \"爱如潮水\"}, \"message\": [{\"text\": \"10块钱来个会装的 帮忙远程一下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 201519593, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBQwC8ekAAJluC7onsGLGcCcB\", \"raw_message\": \"10块钱来个会装的 帮忙远程一下\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 05:33:27',NULL),(153,'202277134610112','{\"seq\": 1318647, \"atme\": false, \"font\": \"宋体\", \"rand\": 684354490, \"time\": 1657172770, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"male\", \"area\": \"梵蒂冈\", \"card\": \"SKY[交流]LEI\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 898325240, \"nickname\": \"lěi\"}, \"message\": [{\"text\": \"大佬们可以帮忙解决一个问题吗?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 898325240, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcjWLWvgAFB73KMprumLGcyIB\", \"raw_message\": \"大佬们可以帮忙解决一个问题吗?\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 05:46:10',NULL),(154,'20227714326188','{\"seq\": 69705, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 160309654, \"time\": 1657173806, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"邵杰\"}, \"message\": [{\"text\": \"有解决不了的bug吗,给点好处,加我,可以帮忙解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1336322173, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdU+mqH0AARBJCY4hlmLGdy4B\", \"raw_message\": \"有解决不了的bug吗,给点好处,加我,可以帮忙解决\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 06:03:26',NULL),(155,'202277142646152','{\"seq\": 14065, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1437380026, \"time\": 1657175206, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"圣马力诺\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 211664768, \"nickname\": \"昂\"}, \"message\": [{\"qq\": 438430735, \"text\": \"@V\", \"type\": \"at\"}, {\"text\": \" 作者大佬帮忙看下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 211664768, \"group_id\": 1163242725, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni插件互助群\", \"message_id\": \"RVWs5Qydv4AAADbxVaytumLGfKYB\", \"raw_message\": \"@V 作者大佬帮忙看下\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 06:26:46',NULL),(156,'202277143943109','{\"seq\": 371710, \"atme\": false, \"font\": \"宋体\", \"rand\": 364002593, \"time\": 1657175983, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1471139102, \"text\": \"@尘落、风归去\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3187230087-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABav+FbI9IWLGf68B\", \"raw_message\": \"@尘落、风归去 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 06:39:43',NULL),(157,'202277143945126','{\"seq\": 371711, \"atme\": false, \"font\": \"宋体\", \"rand\": 1014005753, \"time\": 1657175985, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1183247785, \"text\": \"@Arthur\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2330527628-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABav/PHB/+WLGf7EB\", \"raw_message\": \"@Arthur 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 06:39:45',NULL),(158,'202277152227179','{\"seq\": 69716, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 13818595, \"time\": 1657178547, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 378722278, \"nickname\": \"昨日云烟\"}, \"message\": [{\"text\": \"小额有偿提供以下服务!需要的加好友备注!\\r各类平面设计、P图、抠图、动图制作等!10-30元起!\\r远程解决各类电脑、服务器、软件等各种问题!20-50元起!\\r建站、仿站300-500元起,\\r网站源码定制,设计,\\r解决网站服务器各类问题(小额),\\r先做后收费!需要的加好友备注联系!\\rV信:17190085155(同手机号)\\r专业安装SSL证书 配置 部署 可以做到评分满分A+9 支持百度认证!\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 378722278, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdRaS1+YAARBUANLa42LGibMB\", \"raw_message\": \"小额有偿提供以下服务!需要的加好友备注!\\r各类平面设计、P图、抠图、动图制作等!10-30元起!\\r远程解决各类电脑、服务器、软件等各种问题!20-50元起!\\r建站、仿站300-500元起,\\r网站源码定制,设计,\\r解决网站服务器各类问题(小额),\\r先做后收费!需要的加好友备注联系!\\rV信:17190085155(同手机号)\\r专业安装SSL证书 配置 部署 可以做到评分满分A+9 支持百度认证!\", \"message_type\": \"group\"}','有偿',1,'2022-07-07 07:22:27',NULL),(159,'202277152718167','{\"seq\": 1319368, \"atme\": false, \"font\": \"宋体\", \"rand\": 444726654, \"time\": 1657178838, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"male\", \"area\": \"合肥\", \"card\": \"SKY[黑心]柚子\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2410633923, \"nickname\": \"黑心柚子\"}, \"message\": [{\"text\": \"不想花钱就去B站\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2410633923, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphco+vWsMAFCHIGoH9fmLGitYB\", \"raw_message\": \"不想花钱就去B站\", \"message_type\": \"group\"}','花钱',1,'2022-07-07 07:27:18',NULL),(160,'202277153633181','{\"seq\": 33375, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1396932220, \"time\": 1657179392, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIJfU0N+fGLGjQAB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 07:36:33',NULL),(161,'20227715380137','{\"seq\": 6281, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1598925222, \"time\": 1657179479, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABiJX02ppmLGjVcB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 07:38:00',NULL),(162,'202277154457138','{\"seq\": 372206, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1637863787, \"time\": 1657179896, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"宁波\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1249995382, \"nickname\": \"‭\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/1249995382/599777771-2148546917-95195068EC4B07D28686249ABD5EDC8B/0?term=2\", \"file\": \"95195068ec4b07d28686249abd5edc8b266203-2924-815.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"有人能帮忙瞅瞅嘛\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1249995382, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h60qBanYABa3uYZ/Ra2LGjvgB\", \"raw_message\": \"[图片]有人能帮忙瞅瞅嘛\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 07:44:57',NULL),(163,'20227715462148','{\"seq\": 39643, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3370605915, \"time\": 1657179962, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"毛里求斯\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 583710676, \"nickname\": \"夏目丶\"}, \"message\": [{\"text\": \"最近没花钱 需要花一下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 583710676, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBSLKt9QAAJrbyOddW2LGjzoB\", \"raw_message\": \"最近没花钱 需要花一下\", \"message_type\": \"group\"}','花钱',1,'2022-07-07 07:46:02',NULL),(164,'202277154810173','{\"seq\": 69741, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3318304268, \"time\": 1657180090, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 598960342, \"nickname\": \"Vae\"}, \"message\": [{\"text\": \"能帮忙解决一下吗,有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 598960342, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdSOzaNYAARBtxclODGLGj7oB\", \"raw_message\": \"能帮忙解决一下吗,有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-07 07:48:10',NULL),(165,'20227715552174','{\"seq\": 69752, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2652066846, \"time\": 1657180502, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"邵杰\"}, \"message\": [{\"text\": \"有bug解决不了的,给点好处,我可以帮忙解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1336322173, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdU+mqH0AARB4nhNUHmLGkVYB\", \"raw_message\": \"有bug解决不了的,给点好处,我可以帮忙解决\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 07:55:02',NULL),(166,'202277155826147','{\"seq\": 273357, \"atme\": false, \"font\": \"宋体\", \"rand\": 995026964, \"time\": 1657180706, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 32, \"sex\": \"male\", \"area\": \"郑州\", \"card\": \"河南-2-暮年。\", \"role\": \"member\", \"level\": 6, \"title\": \"\", \"user_id\": 1059546769, \"nickname\": \"暮年。\"}, \"message\": [{\"text\": \"只要让掏钱\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1059546769, \"group_id\": 692522608, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端Vue开发程序员贰\", \"message_id\": \"KUcOcD8nZpEABCvNO07oFGLGkiIB\", \"raw_message\": \"只要让掏钱\", \"message_type\": \"group\"}','掏钱',1,'2022-07-07 07:58:26',NULL),(167,'202277155933103','{\"seq\": 66823, \"atme\": false, \"font\": \"宋体\", \"rand\": 1820636454, \"time\": 1657180773, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2082423304, \"nickname\": \"豆\"}, \"message\": [{\"text\": \"考那个就为了家里有时候没有送货的我帮忙送\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2082423304, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE前端划水群\", \"message_id\": \"J/+MYHwfQggAAQUHbIS1JmLGkmUB\", \"raw_message\": \"考那个就为了家里有时候没有送货的我帮忙送\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 07:59:33',NULL),(168,'20227716213133','{\"seq\": 69762, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2378997994, \"time\": 1657180933, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"邵杰\"}, \"message\": [{\"text\": \"有bug解决不了的,给点好处,我可以帮忙解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1336322173, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdU+mqH0AARCCjcyg6mLGkwUB\", \"raw_message\": \"有bug解决不了的,给点好处,我可以帮忙解决\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 08:02:13',NULL),(169,'20227716438145','{\"seq\": 172846, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 809485106, \"time\": 1657181077, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"邵杰\"}, \"message\": [{\"text\": \"有bug解决不了的,给点好处,我可以帮忙解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1336322173, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIU+mqH0AAqMuMD/DMmLGk5UB\", \"raw_message\": \"有bug解决不了的,给点好处,我可以帮忙解决\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 08:04:38',NULL),(170,'20227716656153','{\"seq\": 172847, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 451029327, \"time\": 1657181216, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"月薪1k的尤玉溪\", \"role\": \"admin\", \"level\": 6, \"title\": \"\", \"user_id\": 2538685067, \"nickname\": \"时过境迁\"}, \"message\": [{\"text\": \"没有bug干活的,叫声靓仔,我可以帮忙开发bug\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2538685067, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIZdRQosAAqMvGuIpT2LGlCAB\", \"raw_message\": \"没有bug干活的,叫声靓仔,我可以帮忙开发bug\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 08:06:56',NULL),(171,'20227716710179','{\"seq\": 172848, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1885960856, \"time\": 1657181230, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"月薪1k的尤玉溪\", \"role\": \"admin\", \"level\": 6, \"title\": \"\", \"user_id\": 2538685067, \"nickname\": \"时过境迁\"}, \"message\": [{\"text\": \"没有bug修复的,叫声靓仔,我可以帮忙开发bug\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2538685067, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIZdRQosAAqMwcGl6mGLGlC4B\", \"raw_message\": \"没有bug修复的,叫声靓仔,我可以帮忙开发bug\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 08:07:10',NULL),(172,'20227716917100','{\"seq\": 372402, \"atme\": false, \"font\": \"宋体\", \"rand\": 1574341672, \"time\": 1657181357, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1634350856, \"text\": \"@若常\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3123669536-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABa6yXdaMKGLGlK0B\", \"raw_message\": \"@若常 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 08:09:17',NULL),(173,'20227716919157','{\"seq\": 372403, \"atme\": false, \"font\": \"宋体\", \"rand\": 1275927045, \"time\": 1657181359, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1099177965, \"text\": \"@长安‘’\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3071164978-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABa6zTA0aBWLGlK8B\", \"raw_message\": \"@长安‘’ 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 08:09:19',NULL),(174,'20227716921179','{\"seq\": 372405, \"atme\": false, \"font\": \"宋体\", \"rand\": 1843236141, \"time\": 1657181361, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 907675067, \"text\": \"@※≤无心≥€之§‘过’¤\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2374079104-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABa61bd2NLWLGlLEB\", \"raw_message\": \"@※≤无心≥€之§‘过’¤ 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 08:09:21',NULL),(175,'20227716924154','{\"seq\": 372407, \"atme\": false, \"font\": \"宋体\", \"rand\": 1191484794, \"time\": 1657181364, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 497996736, \"text\": \"@兜兜里有乖乖_\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2234627394-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABa63RwSdemLGlLQB\", \"raw_message\": \"@兜兜里有乖乖_ 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 08:09:24',NULL),(176,'20227716927134','{\"seq\": 372408, \"atme\": false, \"font\": \"宋体\", \"rand\": 1062016556, \"time\": 1657181367, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2668964442, \"text\": \"@鲜衣怒马的稳健少年\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2690873182-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABa64P00WLGLGlLcB\", \"raw_message\": \"@鲜衣怒马的稳健少年 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 08:09:27',NULL),(177,'20227716929157','{\"seq\": 372409, \"atme\": false, \"font\": \"宋体\", \"rand\": 1029690297, \"time\": 1657181369, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 774800872, \"text\": \"@气泡水\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2916649382-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABa65PV/TuWLGlLkB\", \"raw_message\": \"@气泡水 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 08:09:29',NULL),(178,'20227716936120','{\"seq\": 372411, \"atme\": false, \"font\": \"宋体\", \"rand\": 283964721, \"time\": 1657181376, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 3264888171, \"text\": \"@72\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2735868391-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABa67EOz1MWLGlMAB\", \"raw_message\": \"@72 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 08:09:36',NULL),(179,'202277162110141','{\"seq\": 39707, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 172778317, \"time\": 1657182070, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"unknown\", \"area\": \"北京\", \"card\": \"\", \"role\": \"owner\", \"level\": 1, \"title\": \"\", \"user_id\": 1195566313, \"nickname\": \"张满月\"}, \"message\": [{\"text\": \"牙老师 热心的帮大家解决问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1195566313, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBUdC5OkAAJsbCkxjTWLGl3YB\", \"raw_message\": \"牙老师 热心的帮大家解决问题\", \"message_type\": \"group\"}','解决问题',1,'2022-07-07 08:21:10',NULL),(180,'202277162129183','{\"seq\": 524881, \"atme\": false, \"font\": \"宋体\", \"rand\": 1284620046, \"time\": 1657182089, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 50, \"sex\": \"female\", \"area\": \"银川\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3050188743, \"nickname\": \"负心汉\"}, \"message\": [{\"text\": \"500元求解决帮忙\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3050188743, \"group_id\": 687948914, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue、Nodejs 开发交流\", \"message_id\": \"KQFEcrXOL8cACAJRTJG/DmLGl4kB\", \"raw_message\": \"500元求解决帮忙\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 08:21:29',NULL),(181,'202277163523181','{\"seq\": 33376, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2143317386, \"time\": 1657182923, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 43, \"sex\": \"male\", \"area\": \"厦门\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3316125481, \"nickname\": \"实现梦想\"}, \"message\": [{\"text\": \"有人接单吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3316125481, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMMWoDykAAIJgf8BtimLGmssB\", \"raw_message\": \"有人接单吗\", \"message_type\": \"group\"}','人接单',1,'2022-07-07 08:35:23',NULL),(182,'202277163758162','{\"seq\": 33378, \"atme\": false, \"font\": \"宋体\", \"rand\": 1324971566, \"time\": 1657183078, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIJiTvl2LmLGm2YB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 08:37:58',NULL),(183,'202277165058122','{\"seq\": 172856, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 430736585, \"time\": 1657183858, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"邵杰\"}, \"message\": [{\"text\": \"有bug解决不了的,给点好处,我可以帮忙解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1336322173, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIU+mqH0AAqM4GayEyWLGnnIB\", \"raw_message\": \"有bug解决不了的,给点好处,我可以帮忙解决\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 08:50:58',NULL),(184,'2022771706119','{\"seq\": 372798, \"atme\": false, \"font\": \"宋体\", \"rand\": 1121173693, \"time\": 1657184406, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 402699867, \"text\": \"@Wax\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2791448479-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbA+QtPAvWLGoJYB\", \"raw_message\": \"@Wax 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 09:00:06',NULL),(185,'2022771709178','{\"seq\": 372799, \"atme\": false, \"font\": \"宋体\", \"rand\": 1930660005, \"time\": 1657184409, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 986054814, \"text\": \"@🎭🎭🎭🎭🎭🎭🎭🎭.\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2833887262-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbA/cxOIpWLGoJkB\", \"raw_message\": \"@🎭🎭🎭🎭🎭🎭🎭🎭. 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 09:00:09',NULL),(186,'20227717011162','{\"seq\": 372800, \"atme\": false, \"font\": \"宋体\", \"rand\": 1619695297, \"time\": 1657184411, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1693462921, \"text\": \"@淡\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2922257623-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbBAYIqWwWLGoJsB\", \"raw_message\": \"@淡 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 09:00:11',NULL),(187,'202277171256176','{\"seq\": 56206, \"atme\": false, \"font\": \"宋体\", \"rand\": 161530018, \"time\": 1657185176, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 511984450, \"nickname\": \"巴夷猎人\"}, \"message\": [{\"text\": \"https://ext.dcloud.net.cn/plugin?id=4212\\n付费帮我部署成功\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 511984450, \"group_id\": 325021815, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue/uniapp学习交流\", \"message_id\": \"E19wdx6EQ0IAANuOCaDAomLGo5gB\", \"raw_message\": \"https://ext.dcloud.net.cn/plugin?id=4212\\n付费帮我部署成功\", \"message_type\": \"group\"}','付费',1,'2022-07-07 09:12:56',NULL),(188,'202277172439106','{\"seq\": 140504, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 468021980, \"time\": 1657185879, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"热销-前端,app,小程序,php,go,py\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 243049113, \"nickname\": \"半瓶醋\"}, \"message\": [{\"text\": \"有没有人接单的 想干活的找我 收费的死开\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 243049113, \"group_id\": 874933695, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,vue,小程序\", \"message_id\": \"NCZtvw58opkAAiTYG+Vy3GLGplcB\", \"raw_message\": \"有没有人接单的 想干活的找我 收费的死开\", \"message_type\": \"group\"}','人接单',1,'2022-07-07 09:24:39',NULL),(189,'202277172645163','{\"seq\": 524994, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3809761397, \"time\": 1657186004, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 201679119, \"nickname\": \"ㅤㅤ\"}, \"message\": [{\"text\": \"1k 来个人帮忙看看\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 201679119, \"group_id\": 687948914, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue、Nodejs 开发交流\", \"message_id\": \"KQFEcgwFYQ8ACALC4xRYdWLGptQB\", \"raw_message\": \"1k 来个人帮忙看看\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 09:26:45',NULL),(190,'202277173519129','{\"seq\": 172869, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3638466717, \"time\": 1657186519, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1459847161, \"nickname\": \"公仪斐\"}, \"message\": [{\"text\": \"有没有老哥帮忙解决一个bug\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1459847161, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIVcDf/kAAqNF2N6YnWLGqNcB\", \"raw_message\": \"有没有老哥帮忙解决一个bug\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 09:35:19',NULL),(191,'202277173714146','{\"seq\": 67369, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2344130609, \"time\": 1657186634, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"小布丁\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1585517965, \"nickname\": \"吾\"}, \"message\": [{\"text\": \"我有朋友去Jetbrains上班了,他跟我说,其实不用花钱,输入内部的序列号就可以免费用正版Jetbrains全家桶,我把key分享有缘人: KFC-FUCK-CRAZY-THURSDAY-VME50 ​​​​\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1585517965, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE前端划水群\", \"message_id\": \"J/+MYF6BFY0AAQcpi7iYMWLGqUoB\", \"raw_message\": \"我有朋友去Jetbrains上班了,他跟我说,其实不用花钱,输入内部的序列号就可以免费用正版Jetbrains全家桶,我把key分享有缘人: KFC-FUCK-CRAZY-THURSDAY-VME50 ​​​​\", \"message_type\": \"group\"}','花钱',1,'2022-07-07 09:37:14',NULL),(192,'202277174516182','{\"seq\": 525079, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 406882254, \"time\": 1657187116, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 201679119, \"nickname\": \"ㅤㅤ\"}, \"message\": [{\"text\": \"钱+问题=解决问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 201679119, \"group_id\": 687948914, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue、Nodejs 开发交流\", \"message_id\": \"KQFEcgwFYQ8ACAMXGECHzmLGqywB\", \"raw_message\": \"钱+问题=解决问题\", \"message_type\": \"group\"}','解决问题',1,'2022-07-07 09:45:16',NULL),(193,'202277174837177','{\"seq\": 172872, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 469551928, \"time\": 1657187317, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"邵杰\"}, \"message\": [{\"qq\": 1459847161, \"text\": \"@公仪斐\", \"type\": \"at\"}, {\"text\": \" 我可以帮忙解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1336322173, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIU+mqH0AAqNIG/zLOGLGq/UB\", \"raw_message\": \"@公仪斐 我可以帮忙解决\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 09:48:37',NULL),(194,'202277181151107','{\"seq\": 525195, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3070277096, \"time\": 1657188711, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 201679119, \"nickname\": \"ㅤㅤ\"}, \"message\": [{\"text\": \"花钱没人干\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 201679119, \"group_id\": 687948914, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue、Nodejs 开发交流\", \"message_id\": \"KQFEcgwFYQ8ACAOLtwC16GLGsWcB\", \"raw_message\": \"花钱没人干\", \"message_type\": \"group\"}','花钱',1,'2022-07-07 10:11:51',NULL),(195,'20227718150169','{\"seq\": 372956, \"atme\": false, \"font\": \"宋体\", \"rand\": 1291651678, \"time\": 1657188900, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2895293720, \"text\": \"@Slow Singing\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2901806226-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbDcTP0KXmLGsiQB\", \"raw_message\": \"@Slow Singing 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 10:15:00',NULL),(196,'20227718153101','{\"seq\": 372957, \"atme\": false, \"font\": \"宋体\", \"rand\": 1155220827, \"time\": 1657188903, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2949968238, \"text\": \"@‭悲\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2879134253-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbDdRNtFW2LGsicB\", \"raw_message\": \"@‭悲 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 10:15:03',NULL),(197,'20227718193169','{\"seq\": 145842, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1627374378, \"time\": 1657189143, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 34, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 986427667, \"nickname\": \"心向未来\"}, \"message\": [{\"text\": \"有前端吗,有偿处理bug\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 986427667, \"group_id\": 145454260, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/Webpack/NodeJs\", \"message_id\": \"CKt0tDrLsRMAAjmyYP/DKmLGsxcB\", \"raw_message\": \"有前端吗,有偿处理bug\", \"message_type\": \"group\"}','有偿',1,'2022-07-07 10:19:03',NULL),(198,'20227718402160','{\"seq\": 6285, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 686444205, \"time\": 1657190402, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABiNKOpOrWLGuAIB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 10:40:02',NULL),(199,'20227718406107','{\"seq\": 33386, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 133257878, \"time\": 1657190406, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIJqB/FalmLGuAYB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 10:40:06',NULL),(200,'202277184555159','{\"seq\": 372985, \"atme\": false, \"font\": \"宋体\", \"rand\": 1971792474, \"time\": 1657190755, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 596539512, \"text\": \"@Tea\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2481125758-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbD5dYcqWmLGuWMB\", \"raw_message\": \"@Tea 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 10:45:55',NULL),(201,'202277193723156','{\"seq\": 373113, \"atme\": false, \"font\": \"宋体\", \"rand\": 1300152268, \"time\": 1657193843, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2822432381, \"text\": \"@hope.\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2793058032-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbF5TX6/zGLGxXMB\", \"raw_message\": \"@hope. 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 11:37:23',NULL),(202,'202277194917178','{\"seq\": 373134, \"atme\": false, \"font\": \"宋体\", \"rand\": 1838833364, \"time\": 1657194557, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 177714444, \"text\": \"@文也\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2186358196-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbGObZpe1GLGyD0B\", \"raw_message\": \"@文也 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 11:49:17',NULL),(203,'20227719548153','{\"seq\": 6288, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1942238673, \"time\": 1657194848, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABiQc8Q10WLGyWAB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 11:54:08',NULL),(204,'202277195420125','{\"seq\": 33389, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 957234223, \"time\": 1657194860, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIJtOQ48L2LGyWwB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 11:54:20',NULL),(205,'202277201513124','{\"seq\": 947795, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1431946081, \"time\": 1657196113, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 28, \"sex\": \"male\", \"area\": \"孝感\", \"card\": \"武汉-我爱吃土豆\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 524926126, \"nickname\": \"我爱吃土豆啊\"}, \"message\": [{\"text\": \"兄弟们 帮帮忙 这个方法应该怎么写啊\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 524926126, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvBx9JvK4ADnZTVVnDYWLGzlEB\", \"raw_message\": \"兄弟们 帮帮忙 这个方法应该怎么写啊\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 12:15:13',NULL),(206,'202277203818112','{\"seq\": 947801, \"atme\": false, \"font\": \"宋体\", \"rand\": 1689388082, \"time\": 1657197498, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 28, \"sex\": \"male\", \"area\": \"孝感\", \"card\": \"武汉-我爱吃土豆\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 524926126, \"nickname\": \"我爱吃土豆啊\"}, \"message\": [{\"qq\": 975472296, \"text\": \"@信仰。\", \"type\": \"at\"}, {\"text\": \" 能帮忙写一下吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 524926126, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvBx9JvK4ADnZZZLIEMmLG07oB\", \"raw_message\": \"@信仰。 能帮忙写一下吗\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 12:38:18',NULL),(207,'202277204846135','{\"seq\": 373201, \"atme\": false, \"font\": \"宋体\", \"rand\": 1095362571, \"time\": 1657198126, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1499080360, \"text\": \"@ChenJiatai\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2902653679-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbHRQUnoC2LG1i4B\", \"raw_message\": \"@ChenJiatai 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 12:48:46',NULL),(208,'202277204847160','{\"seq\": 373202, \"atme\": false, \"font\": \"宋体\", \"rand\": 515222806, \"time\": 1657198127, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 3045320362, \"text\": \"@左右\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2272670867-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbHSHrWtFmLG1i8B\", \"raw_message\": \"@左右 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 12:48:47',NULL),(209,'20227720595161','{\"seq\": 373203, \"atme\": false, \"font\": \"宋体\", \"rand\": 1262416796, \"time\": 1657198745, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1508043142, \"text\": \"@L\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3130932490-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbHTSz7znGLG2JkB\", \"raw_message\": \"@L 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 12:59:05',NULL),(210,'202277205951109','{\"seq\": 140749, \"atme\": false, \"font\": \"宋体\", \"rand\": 565258890, \"time\": 1657198791, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"北海\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1535530868, \"nickname\": \"羅志祥\"}, \"message\": [{\"text\": \"有没有人接单的 想干活的找我 收费的就不要加我了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1535530868, \"group_id\": 874933695, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,vue,小程序\", \"message_id\": \"NCZtv1uGV3QAAiXNIbEqimLG2McB\", \"raw_message\": \"有没有人接单的 想干活的找我 收费的就不要加我了\", \"message_type\": \"group\"}','人接单',1,'2022-07-07 12:59:51',NULL),(211,'202277213330122','{\"seq\": 373229, \"atme\": false, \"font\": \"宋体\", \"rand\": 615614809, \"time\": 1657200809, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2249628106, \"text\": \"@多财多亿\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2296741335-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbHtJLGJWWLG4KkB\", \"raw_message\": \"@多财多亿 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 13:33:30',NULL),(212,'202277213332139','{\"seq\": 373230, \"atme\": false, \"font\": \"宋体\", \"rand\": 321781731, \"time\": 1657200812, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1729567095, \"text\": \"@枊╯\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3153744315-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbHuEy3/42LG4KwB\", \"raw_message\": \"@枊╯ 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 13:33:32',NULL),(213,'202277213547111','{\"seq\": 33393, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1261987476, \"time\": 1657200947, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIJxSzhmlGLG4TMB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 13:35:47',NULL),(214,'202277214616139','{\"seq\": 373268, \"atme\": false, \"font\": \"宋体\", \"rand\": 123651859, \"time\": 1657201575, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2671950960, \"text\": \"@花海\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2806279481-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbIUB17HE2LG46cB\", \"raw_message\": \"@花海 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 13:46:16',NULL),(215,'202277222024121','{\"seq\": 373339, \"atme\": false, \"font\": \"宋体\", \"rand\": 1905970931, \"time\": 1657203624, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1415142668, \"text\": \"@💫\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2159710948-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbJbcZrO82LG66gB\", \"raw_message\": \"@💫 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 14:20:24',NULL),(216,'202277222027135','{\"seq\": 373340, \"atme\": false, \"font\": \"宋体\", \"rand\": 1666389513, \"time\": 1657203626, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2523855351, \"text\": \"@.\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2319350415-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbJcY1MWCWLG66oB\", \"raw_message\": \"@. 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 14:20:27',NULL),(217,'202277222058160','{\"seq\": 373346, \"atme\": false, \"font\": \"宋体\", \"rand\": 1873345858, \"time\": 1657203658, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2523855351, \"nickname\": \".\"}, \"message\": [{\"text\": \"有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2523855351, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h65Zu+fcABbJib6j9QmLG68oB\", \"raw_message\": \"有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-07 14:20:58',NULL),(218,'202277222527126','{\"seq\": 373374, \"atme\": false, \"font\": \"宋体\", \"rand\": 611084763, \"time\": 1657203926, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2523855351, \"nickname\": \".\"}, \"message\": [{\"text\": \"有接单的吗/捂脸\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2523855351, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h65Zu+fcABbJ+JGxp22LG7NYB\", \"raw_message\": \"有接单的吗/捂脸\", \"message_type\": \"group\"}','有接单的',1,'2022-07-07 14:25:27',NULL),(219,'202277224119150','{\"seq\": 31207, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 578215940, \"time\": 1657204879, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1077698216, \"nickname\": \"Wby\"}, \"message\": [{\"text\": \"谁能有偿解决个问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1077698216, \"group_id\": 828816138, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"pytorch/django/vue技术交流\", \"message_id\": \"MWa7CkA8XqgAAHnnInbgBGLG8I8B\", \"raw_message\": \"谁能有偿解决个问题\", \"message_type\": \"group\"}','有偿',1,'2022-07-07 14:41:19',NULL),(220,'202277225946152','{\"seq\": 40440, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 701775854, \"time\": 1657205986, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1476273138, \"nickname\": \"LveZ\"}, \"message\": [{\"text\": \"有小伙伴在vue3中用过betterScroll吗\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/1476273138/855139333-3155700809-2A87D5AE6CCDA6830339AA1DF5FA1360/0?term=2\", \"file\": \"2a87d5ae6ccda6830339aa1df5fa136017924-514-527.jpg\", \"type\": \"image\", \"asface\": true}, {\"text\": \"求助一个问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1476273138, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBVf+I/IAAJ34KdQ/7mLG9OIB\", \"raw_message\": \"有小伙伴在vue3中用过betterScroll吗[动画表情]求助一个问题\", \"message_type\": \"group\"}','求助',1,'2022-07-07 14:59:46',NULL),(221,'20227723245154','{\"seq\": 373551, \"atme\": false, \"font\": \"宋体\", \"rand\": 449759026, \"time\": 1657206165, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 91, \"sex\": \"male\", \"area\": \"台北市\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3045320362, \"nickname\": \"左右\"}, \"message\": [{\"qq\": 1838915268, \"text\": \"@哈哈😄\", \"type\": \"at\"}, {\"text\": \" 帮忙看一下撒\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3045320362, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h67WD5qoABbMvGs7HMmLG9ZUB\", \"raw_message\": \"@哈哈😄 帮忙看一下撒\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 15:02:45',NULL),(222,'20227803236124','{\"seq\": 1320955, \"atme\": false, \"font\": \"宋体\", \"rand\": 1327617238, \"time\": 1657211556, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 33, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[交流]豆沙\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 414239035, \"nickname\": \"豆沙\"}, \"message\": [{\"text\": \"想找个实习生,远程,付费,react table,英文好\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 414239035, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphchiwyTsAFCf7TyHU1mLHCqQB\", \"raw_message\": \"想找个实习生,远程,付费,react table,英文好\", \"message_type\": \"group\"}','付费',1,'2022-07-07 16:32:36',NULL),(223,'20227804339127','{\"seq\": 33396, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 180815054, \"time\": 1657212219, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIJ0CscEzmLHDTsB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 16:43:39',NULL),(224,'20227804344110','{\"seq\": 6293, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 432557753, \"time\": 1657212224, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABiVGchOuWLHDUAB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-07 16:43:44',NULL),(225,'20227804446136','{\"seq\": 947990, \"atme\": false, \"font\": \"宋体\", \"rand\": 801973242, \"time\": 1657212286, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"上海\", \"card\": \"郑州Java从此不做舔狗\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3175449063, \"nickname\": \"加油,董董同学\"}, \"message\": [{\"qq\": 3165427409, \"text\": \"@福州-名\", \"type\": \"at\"}, {\"text\": \" 学历歧视这是个社会问题,说大了是阶级矛盾。我 们应 从识到一点, 就是我们大部分人无论学历高 低都是无产阶级, 学历不能与个人价值画等号。任 何劳动者都应享有符合劳动产出的相应报酬。我们 无产阶级内部应当保持紧密团结。但部分同是无产 阶级的企业HR, 高学历群体, 等。却在有意或无意 的贬损学历较低的劳动者, 它们通过否定, 排挤, 诋毁等手段贬低低学历劳动者的价值。 试图压低低 学历劳动者的报酬,从中获取阶级提升的优越感的 假象,也无意或有意中帮助资本阶级压榨劳动者更 多的剩余价值。 试图用文凭将劳动者割裂, 在无产 阶级内部分化出贵贱尊卑来,将矛盾转移到无产阶 级内部。这些人是无产者Q里的叛徒, 是资本或中 产阶级眼里的走狗。无产阶级必须认清, 整个无产 阶级要联合起来、互相支持,为打倒共同敌人,捍 卫共同利益而斗争。\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3175449063, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB71FgecADncWL80j+mLHDX4B\", \"raw_message\": \"@福州-名 学历歧视这是个社会问题,说大了是阶级矛盾。我 们应 从识到一点, 就是我们大部分人无论学历高 低都是无产阶级, 学历不能与个人价值画等号。任 何劳动者都应享有符合劳动产出的相应报酬。我们 无产阶级内部应当保持紧密团结。但部分同是无产 阶级的企业HR, 高学历群体, 等。却在有意或无意 的贬损学历较低的劳动者, 它们通过否定, 排挤, 诋毁等手段贬低低学历劳动者的价值。 试图压低低 学历劳动者的报酬,从中获取阶级提升的优越感的 假象,也无意或有意中帮助资本阶级压榨劳动者更 多的剩余价值。 试图用文凭将劳动者割裂, 在无产 阶级内部分化出贵贱尊卑来,将矛盾转移到无产阶 级内部。这些人是无产者Q里的叛徒, 是资本或中 产阶级眼里的走狗。无产阶级必须认清, 整个无产 阶级要联合起来、互相支持,为打倒共同敌人,捍 卫共同利益而斗争。\", \"message_type\": \"group\"}','帮助',1,'2022-07-07 16:44:46',NULL),(226,'2022789558184','{\"seq\": 374030, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1160744282, \"time\": 1657242358, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 16, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1412167808, \"nickname\": \"初\"}, \"message\": [{\"text\": \"/doge有偿解决好吧\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1412167808, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h61Qr+IAABbUORS+NWmLHgvYB\", \"raw_message\": \"/doge有偿解决好吧\", \"message_type\": \"group\"}','有偿',1,'2022-07-08 01:05:58',NULL),(227,'2022789636141','{\"seq\": 374034, \"atme\": false, \"font\": \"汉仪南宫体简\", \"rand\": 327799695, \"time\": 1657242396, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"female\", \"area\": \"\", \"card\": \"李嘉图,你也不想手冲的事情被老师发现吧...\", \"role\": \"member\", \"level\": 1, \"title\": \"头衔\", \"user_id\": 2279202642, \"nickname\": \"把瑶瑶揍哭\"}, \"message\": [{\"text\": \" 我有玄神,图神和将神 不需要有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2279202642, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h64fZ31IABbUSE4nTj2LHgxwB\", \"raw_message\": \" 我有玄神,图神和将神 不需要有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-08 01:06:36',NULL),(228,'2022789714122','{\"seq\": 374039, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3291152545, \"time\": 1657242434, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"female\", \"area\": \"娄底\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2635683352, \"nickname\": \"怎么办\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/2635683352/599777771-2561830119-89B19FDF0946F35A8953527020E659F6/0?term=2\", \"file\": \"89b19fdf0946f35a8953527020e659f648439-955-410.jpg\", \"type\": \"image\", \"asface\": false}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2635683352/599777771-2377238306-098DE08115F7167F4F8E462799817C02/0?term=2\", \"file\": \"098de08115f7167f4f8e462799817c0223898-659-337.jpg\", \"type\": \"image\", \"asface\": false}, {\"text\": \"求助各位大佬,要么样式没起作用,要么只能再除了chrome以外的浏览器显示有样式的网页,我删了重建好几遍之后就显示我的内容有违规内容。我试了,问题出在。index.html,但是先前内容没违规,后来我没也没再改代码了,然后它就说我有违规内容。\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2635683352, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h650ZVhgABbUXxCsAoWLHg0IB\", \"raw_message\": \"[图片][图片]求助各位大佬,要么样式没起作用,要么只能再除了chrome以外的浏览器显示有样式的网页,我删了重建好几遍之后就显示我的内容有违规内容。我试了,问题出在。index.html,但是先前内容没违规,后来我没也没再改代码了,然后它就说我有违规内容。\", \"message_type\": \"group\"}','求助',1,'2022-07-08 01:07:14',NULL),(229,'202278105220154','{\"seq\": 31210, \"atme\": false, \"font\": \"宋体\", \"rand\": 1544848575, \"time\": 1657248740, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 827873380, \"nickname\": \"益达\"}, \"message\": [{\"text\": \"/辣眼睛有哪个老哥帮帮忙,我继承不了models.MODEL了....\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 827873380, \"group_id\": 828816138, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"pytorch/django/vue技术交流\", \"message_id\": \"MWa7CjFYWGQAAHnqXBSEv2LHm+QB\", \"raw_message\": \"/辣眼睛有哪个老哥帮帮忙,我继承不了models.MODEL了....\", \"message_type\": \"group\"}','帮忙',1,'2022-07-08 02:52:20',NULL),(230,'202278105848167','{\"seq\": 948122, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2850123596, \"time\": 1657249128, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 40, \"sex\": \"female\", \"area\": \"台州\", \"card\": \"台州-TT\", \"role\": \"member\", \"level\": 2, \"title\": \"\", \"user_id\": 1046783374, \"nickname\": \"tt\"}, \"message\": [{\"text\": \"大佬帮忙看下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1046783374, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvBz5kpY4ADneaqeFvTGLHnWgB\", \"raw_message\": \"大佬帮忙看下\", \"message_type\": \"group\"}','帮忙',1,'2022-07-08 02:58:48',NULL),(231,'20227811727166','{\"seq\": 145864, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2352775283, \"time\": 1657249647, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 646924340, \"nickname\": \"私人订制\"}, \"message\": [{\"text\": \"有想做兼职的 加群: 729400652 没事挣点零花钱\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 646924340, \"group_id\": 145454260, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/Webpack/NodeJs\", \"message_id\": \"CKt0tCaPSDQAAjnIjDyAc2LHn28B\", \"raw_message\": \"有想做兼职的 加群: 729400652 没事挣点零花钱\", \"message_type\": \"group\"}','花钱',1,'2022-07-08 03:07:27',NULL),(232,'202278111010141','{\"seq\": 59880, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3075187303, \"time\": 1657249810, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 646924340, \"nickname\": \"私人订制\"}, \"message\": [{\"text\": \"有想做兼职的 加群: 729400652 没事挣点零花钱\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 646924340, \"group_id\": 306797275, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"mypUI nvue uniapp\", \"message_id\": \"Ekla2yaPSDQAAOnot0uiZ2LHoBIB\", \"raw_message\": \"有想做兼职的 加群: 729400652 没事挣点零花钱\", \"message_type\": \"group\"}','花钱',1,'2022-07-08 03:10:10',NULL),(233,'202278112132142','{\"seq\": 374738, \"atme\": false, \"font\": \"宋体\", \"rand\": 201539509, \"time\": 1657250492, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2230669976, \"nickname\": \"奔波\"}, \"message\": [{\"text\": \"有没有前端帮忙解决一个问题 有偿,就是把数据存入到浏览器本地数据库里面\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2230669976, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h64T1UpgABbfSDAM/tWLHorwB\", \"raw_message\": \"有没有前端帮忙解决一个问题 有偿,就是把数据存入到浏览器本地数据库里面\", \"message_type\": \"group\"}','有偿',1,'2022-07-08 03:21:32',NULL),(234,'20227811266112','{\"seq\": 69156, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1441491811, \"time\": 1657250766, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"新冠肺炎征服者\", \"role\": \"admin\", \"level\": 1, \"title\": \"\", \"user_id\": 1255986575, \"nickname\": \"𝑴𝒊𝒓𝑎𝒄𝒍𝒆\"}, \"message\": [{\"text\": \"需要帮助啊\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1255986575, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE前端划水群\", \"message_id\": \"J/+MYErc1Y8AAQ4kVetrY2LHo84B\", \"raw_message\": \"需要帮助啊\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 03:26:06',NULL),(235,'202278114459189','{\"seq\": 140779, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2287436987, \"time\": 1657251899, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"\", \"card\": \"java全栈5年长期接单\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1972500072, \"nickname\": \"甍窠\"}, \"message\": [{\"text\": \"你有啥活值得别人花钱找你\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1972500072, \"group_id\": 874933695, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,vue,小程序\", \"message_id\": \"NCZtv3WR9mgAAiXriFeEu2LHqDsB\", \"raw_message\": \"你有啥活值得别人花钱找你\", \"message_type\": \"group\"}','花钱',1,'2022-07-08 03:44:59',NULL),(236,'202278115042109','{\"seq\": 4466, \"atme\": false, \"font\": \"宋体\", \"rand\": 2009351072, \"time\": 1657252242, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 37, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2802182735, \"nickname\": \"单片机设计者\"}, \"message\": [{\"text\": \"\\n各位老板,嵌入式工程师私人接单:接各类stm32 51单片机arm嵌入式开发 抄写原理图 智能产品 娱乐产品 开发 有偿技术指导 小批量供货 需要的私聊\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2802182735, \"group_id\": 124041790, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React外包交流群\", \"message_id\": \"B2S6PqcF6k8AABFyd8RDoGLHqZIB\", \"raw_message\": \"\\n各位老板,嵌入式工程师私人接单:接各类stm32 51单片机arm嵌入式开发 抄写原理图 智能产品 娱乐产品 开发 有偿技术指导 小批量供货 需要的私聊\", \"message_type\": \"group\"}','有偿',1,'2022-07-08 03:50:42',NULL),(237,'202278115612132','{\"seq\": 140785, \"atme\": false, \"font\": \"宋体\", \"rand\": 1076873200, \"time\": 1657252572, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 40, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2189431332, \"nickname\": \"脊梁\"}, \"message\": [{\"text\": \"各位老师,微擎模块里搜不到新关注公众号的粉丝(会员)昵称,怎么解决呀?付费。速联系,私聊!\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2189431332, \"group_id\": 874933695, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,vue,小程序\", \"message_id\": \"NCZtv4KAEiQAAiXxQC/H8GLHqtwB\", \"raw_message\": \"各位老师,微擎模块里搜不到新关注公众号的粉丝(会员)昵称,怎么解决呀?付费。速联系,私聊!\", \"message_type\": \"group\"}','付费',1,'2022-07-08 03:56:12',NULL),(238,'202278115633150','{\"seq\": 161920, \"atme\": false, \"font\": \"宋体\", \"rand\": 1889990501, \"time\": 1657252593, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2189431332, \"nickname\": \"脊梁\"}, \"message\": [{\"text\": \"各位老师,微擎模块里搜不到新关注公众号的粉丝(会员)昵称,怎么解决呀?付费。速联系,私聊!\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2189431332, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O44KAEiQAAniAcKb3ZWLHqvEB\", \"raw_message\": \"各位老师,微擎模块里搜不到新关注公众号的粉丝(会员)昵称,怎么解决呀?付费。速联系,私聊!\", \"message_type\": \"group\"}','付费',1,'2022-07-08 03:56:33',NULL),(239,'20227811577162','{\"seq\": 948288, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3730352380, \"time\": 1657252627, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"唐山\", \"card\": \"北京-墨雪遗痕\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2801067014, \"nickname\": \"墨雪遗痕\"}, \"message\": [{\"text\": \"但是,真的不能解决问题了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2801067014, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB6b05AYADnhA3lio/GLHqxMB\", \"raw_message\": \"但是,真的不能解决问题了\", \"message_type\": \"group\"}','解决问题',1,'2022-07-08 03:57:07',NULL),(240,'20227812049141','{\"seq\": 374944, \"atme\": false, \"font\": \"宋体\", \"rand\": 2055864158, \"time\": 1657252849, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 3224991841, \"text\": \"@永不言弃\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2692962725-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbigeon/XmLHq/EB\", \"raw_message\": \"@永不言弃 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 04:00:49',NULL),(241,'20227812050181','{\"seq\": 374945, \"atme\": false, \"font\": \"宋体\", \"rand\": 1101314251, \"time\": 1657252850, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 209811629, \"text\": \"@一笑\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2307849415-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbihQaS4y2LHq/IB\", \"raw_message\": \"@一笑 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 04:00:50',NULL),(242,'20227812053162','{\"seq\": 374946, \"atme\": false, \"font\": \"宋体\", \"rand\": 966016676, \"time\": 1657252852, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1154669285, \"text\": \"@   \", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2618841994-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbiiOZQ+pGLHq/QB\", \"raw_message\": \"@    欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 04:00:53',NULL),(243,'20227812053150','{\"seq\": 374947, \"atme\": false, \"font\": \"宋体\", \"rand\": 1703192975, \"time\": 1657252853, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2491960396, \"text\": \"@397\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2242837786-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbijZYSpj2LHq/UB\", \"raw_message\": \"@397 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 04:00:53',NULL),(244,'202278123039167','{\"seq\": 374978, \"atme\": false, \"font\": \"宋体\", \"rand\": 820489647, \"time\": 1657254639, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 3573361068, \"text\": \"@看我干嘛\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2564303265-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbjCMOetr2LHsu8B\", \"raw_message\": \"@看我干嘛 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 04:30:39',NULL),(245,'202278123045168','{\"seq\": 374980, \"atme\": false, \"font\": \"宋体\", \"rand\": 338133367, \"time\": 1657254645, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2371274124, \"text\": \"@郁青\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2838600850-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbjEFCeBd2LHsvUB\", \"raw_message\": \"@郁青 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 04:30:45',NULL),(246,'202278125944134','{\"seq\": 374999, \"atme\": false, \"font\": \"宋体\", \"rand\": 1735666613, \"time\": 1657256383, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2420916396, \"text\": \"@键盘少年\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2554450512-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABbjXZ3QrtWLHub8B\", \"raw_message\": \"@键盘少年 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 04:59:44',NULL),(247,'202278165217118','{\"seq\": 95288, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 413026165, \"time\": 1657270337, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"DCloud_UNI_HT\", \"role\": \"owner\", \"level\": 6, \"title\": \"想好在问\", \"user_id\": 490272692, \"nickname\": \"meHaoTian\"}, \"message\": [{\"text\": \"我觉的 我给你们解决问题 也挺积极了吧\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 490272692, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp9x0497QAAXQ4GJ5HdWLH8EEB\", \"raw_message\": \"我觉的 我给你们解决问题 也挺积极了吧\", \"message_type\": \"group\"}','解决问题',1,'2022-07-08 08:52:17',NULL),(248,'202278165318177','{\"seq\": 95296, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3825635385, \"time\": 1657270398, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 19, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 984174472, \"nickname\": \"风紧不扯呼\"}, \"message\": [{\"text\": \"我看那个ucharts 弄个付费被喷坏了。。\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 984174472, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp9zqpT4gAAXRA5AaQOWLH8H4B\", \"raw_message\": \"我看那个ucharts 弄个付费被喷坏了。。\", \"message_type\": \"group\"}','付费',1,'2022-07-08 08:53:18',NULL),(249,'20227816557141','{\"seq\": 948532, \"atme\": false, \"font\": \"宋体\", \"rand\": 728038403, \"time\": 1657270507, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3381775672, \"nickname\": \"喵喵\"}, \"message\": [{\"text\": \"可以跟我说(要叫我或者at我,我才知道哦):\\r\\n提醒帮助\\r\\n上海天气 上海明天天气\\r\\n笑话\\r\\n摸鱼 摸鱼帮助 节假日\\r\\n图 风景图 动漫图 美女图 妹子图\\r\\n随机点数\\r\\n美音hello 英音hello\\r\\n\\r\\n另外,我可以执行Racket代码哦\\r\\n 有以下几种发送给我的方式:\\r\\n a. 如果代码是以一个完整的表达式(如(+ 1 2))开始,可以直接发送。\\r\\n b. at我,然后跟着代码。\\r\\n c. 直接发送 #rkt <代码> 这个输出会带源代码的消息的回复\\r\\n d. 直接发送 !rkt <代码> 这个输出不带源代码的消息的回复\\r\\n 可以输出图像,绘图函数详见Racket的2htdp/image、racket/draw等模块的文档\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3381775672, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB8mRzTgADnk0K2T8A2LH8OsB\", \"raw_message\": \"可以跟我说(要叫我或者at我,我才知道哦):\\r\\n提醒帮助\\r\\n上海天气 上海明天天气\\r\\n笑话\\r\\n摸鱼 摸鱼帮助 节假日\\r\\n图 风景图 动漫图 美女图 妹子图\\r\\n随机点数\\r\\n美音hello 英音hello\\r\\n\\r\\n另外,我可以执行Racket代码哦\\r\\n 有以下几种发送给我的方式:\\r\\n a. 如果代码是以一个完整的表达式(如(+ 1 2))开始,可以直接发送。\\r\\n b. at我,然后跟着代码。\\r\\n c. 直接发送 #rkt <代码> 这个输出会带源代码的消息的回复\\r\\n d. 直接发送 !rkt <代码> 这个输出不带源代码的消息的回复\\r\\n 可以输出图像,绘图函数详见Racket的2htdp/image、racket/draw等模块的文档\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 08:55:07',NULL),(250,'20227817463173','{\"seq\": 1324321, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2232803993, \"time\": 1657273562, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[交流]邵杰\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"邵杰\"}, \"message\": [{\"text\": \"调不出来的bug,给点好处,我可以帮忙,别恶心我就好了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1336322173, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphck+mqH0AFDUhhRXimWLH/NoB\", \"raw_message\": \"调不出来的bug,给点好处,我可以帮忙,别恶心我就好了\", \"message_type\": \"group\"}','帮忙',1,'2022-07-08 09:46:03',NULL),(251,'202278174651144','{\"seq\": 33426, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1006645518, \"time\": 1657273611, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIKSPAAxDmLH/QsB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-08 09:46:51',NULL),(252,'20227818250150','{\"seq\": 95697, \"atme\": false, \"font\": \"宋体\", \"rand\": 779660772, \"time\": 1657275900, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"DCloud_UNI_HT\", \"role\": \"owner\", \"level\": 6, \"title\": \"想好在问\", \"user_id\": 490272692, \"nickname\": \"meHaoTian\"}, \"message\": [{\"text\": \"我又不需要你们给我解决问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 490272692, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp9x0497QAAXXRLnit5GLIBfwB\", \"raw_message\": \"我又不需要你们给我解决问题\", \"message_type\": \"group\"}','解决问题',1,'2022-07-08 10:25:00',NULL),(253,'202278184844147','{\"seq\": 376930, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1648269507, \"time\": 1657277323, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 17, \"sex\": \"unknown\", \"area\": \"圣诞岛\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"低调且大佬\", \"user_id\": 745392994, \"nickname\": \"王将\"}, \"message\": [{\"text\": \"微软这没少花钱,haskell的编译器GHCi,就是微软圈钱的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 745392994, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6yxty2IABcBiYj6Yw2LIC4sB\", \"raw_message\": \"微软这没少花钱,haskell的编译器GHCi,就是微软圈钱的\", \"message_type\": \"group\"}','花钱',1,'2022-07-08 10:48:44',NULL),(254,'202278185049126','{\"seq\": 31230, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 681914389, \"time\": 1657277448, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1291454411, \"nickname\": \"蠢鱼\"}, \"message\": [{\"qq\": 438817192, \"text\": \"@轮丶回\", \"type\": \"at\"}, {\"text\": \" 一个是创建一个迁移文件,这个迁移文件第一次可以帮住你创建数据库,如果你修改模型,迁移文件也可以帮助你在原有基础上修改。另个是执行迁移文件\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1291454411, \"group_id\": 828816138, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"pytorch/django/vue技术交流\", \"message_id\": \"MWa7Ckz6B8sAAHn+KKUwFWLIDAgB\", \"raw_message\": \"@轮丶回 一个是创建一个迁移文件,这个迁移文件第一次可以帮住你创建数据库,如果你修改模型,迁移文件也可以帮助你在原有基础上修改。另个是执行迁移文件\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 10:50:49',NULL),(255,'202278195659166','{\"seq\": 377100, \"atme\": false, \"font\": \"宋体\", \"rand\": 58109770, \"time\": 1657281418, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 531372563, \"text\": \"@建文困了\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2850159950-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABcEMA3avSmLIG4oB\", \"raw_message\": \"@建文困了 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 11:56:59',NULL),(256,'20227819570135','{\"seq\": 377101, \"atme\": false, \"font\": \"宋体\", \"rand\": 640704942, \"time\": 1657281420, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1041997173, \"text\": \"@梦魇绽荼蘼\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2922478247-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABcENJjBhrmLIG4wB\", \"raw_message\": \"@梦魇绽荼蘼 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 11:57:00',NULL),(257,'20227819572136','{\"seq\": 377102, \"atme\": false, \"font\": \"宋体\", \"rand\": 1444444372, \"time\": 1657281421, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 583653823, \"text\": \"@JRS\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3146889801-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABcEOVhh41GLIG40B\", \"raw_message\": \"@JRS 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 11:57:02',NULL),(258,'20227819573173','{\"seq\": 377103, \"atme\": false, \"font\": \"宋体\", \"rand\": 1163420206, \"time\": 1657281423, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2391924522, \"text\": \"@吴彦祖\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2281283706-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABcEPRVhiLmLIG48B\", \"raw_message\": \"@吴彦祖 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 11:57:03',NULL),(259,'20227819575124','{\"seq\": 377104, \"atme\": false, \"font\": \"宋体\", \"rand\": 144169650, \"time\": 1657281424, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2110843015, \"text\": \"@棺老\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2322021228-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABcEQCJfasmLIG5AB\", \"raw_message\": \"@棺老 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 11:57:05',NULL),(260,'202278195657158','{\"seq\": 377099, \"atme\": false, \"font\": \"宋体\", \"rand\": 574114191, \"time\": 1657281417, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1524896717, \"text\": \"@一个p标签\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2886857723-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABcELIjhJj2LIG4kB\", \"raw_message\": \"@一个p标签 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 11:56:57',NULL),(261,'20227819577172','{\"seq\": 377105, \"atme\": false, \"font\": \"宋体\", \"rand\": 1541546233, \"time\": 1657281427, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2500020117, \"text\": \"@ \", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3193101521-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABcERW+Ig+WLIG5MB\", \"raw_message\": \"@  欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 11:57:07',NULL),(262,'20227819579136','{\"seq\": 377106, \"atme\": false, \"font\": \"宋体\", \"rand\": 2050368738, \"time\": 1657281429, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 547191009, \"text\": \"@小元\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2170926782-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABcESejYk4mLIG5UB\", \"raw_message\": \"@小元 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 11:57:09',NULL),(263,'202278195710152','{\"seq\": 377107, \"atme\": false, \"font\": \"宋体\", \"rand\": 1350581284, \"time\": 1657281430, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 635713072, \"text\": \"@The rest of life ٩😛ི۶\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2713323288-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABcETUIA8JGLIG5YB\", \"raw_message\": \"@The rest of life ٩😛ི۶ 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 11:57:10',NULL),(264,'202278195710144','{\"seq\": 377108, \"atme\": false, \"font\": \"宋体\", \"rand\": 2016717397, \"time\": 1657281430, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 32700818, \"text\": \"@阿明\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2751832448-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABcEUeDSqVWLIG5YB\", \"raw_message\": \"@阿明 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 11:57:10',NULL),(265,'20227820150130','{\"seq\": 56249, \"atme\": false, \"font\": \"新宋体\", \"rand\": 3372139359, \"time\": 1657281710, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"桂林\", \"card\": \"职业请教玛卡巴卡大佬\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 978243710, \"nickname\": \"Passion\"}, \"message\": [{\"text\": \"一直报错,求助各位老铁\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 978243710, \"group_id\": 325021815, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue/uniapp学习交流\", \"message_id\": \"E19wdzpO0H4AANu5yP7DX2LIHK4B\", \"raw_message\": \"一直报错,求助各位老铁\", \"message_type\": \"group\"}','求助',1,'2022-07-08 12:01:50',NULL),(266,'20227820538171','{\"seq\": 1324794, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 813034177, \"time\": 1657281938, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[交流]凌晨\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1486022687, \"nickname\": \"凌 晨\"}, \"message\": [{\"text\": \"帮帮忙\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1486022687, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcliS6B8AFDb6MHXqwWLIHZIB\", \"raw_message\": \"帮帮忙\", \"message_type\": \"group\"}','帮忙',1,'2022-07-08 12:05:38',NULL),(267,'202278202147145','{\"seq\": 70288, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 115785652, \"time\": 1657282907, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3192475552, \"nickname\": \"Slute.\"}, \"message\": [{\"text\": \"有没有大佬帮忙看一下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3192475552, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdb5JT6AAARKQBua/tGLIIVsB\", \"raw_message\": \"有没有大佬帮忙看一下\", \"message_type\": \"group\"}','帮忙',1,'2022-07-08 12:21:47',NULL),(268,'202278202144119','{\"seq\": 13161, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3990528074, \"time\": 1657282904, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1207683482, \"nickname\": \"丶超人不会飞\"}, \"message\": [{\"text\": \"有需要的伙伴联系我:\\r1. 高质量软著代写\\r2. 软著代报\\r3. 可运行视频软件\\r4. 软测报告\\r5. 实用新型、外观专利和发明专利\\r6. 专利撰写\\r7. 商标\\r可签合同,开发票(换群+)\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1207683482, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VEf7yZoAADNp7dqgSmLIIVgB\", \"raw_message\": \"有需要的伙伴联系我:\\r1. 高质量软著代写\\r2. 软著代报\\r3. 可运行视频软件\\r4. 软测报告\\r5. 实用新型、外观专利和发明专利\\r6. 专利撰写\\r7. 商标\\r可签合同,开发票(换群+)\", \"message_type\": \"group\"}','联系我',1,'2022-07-08 12:21:44',NULL),(269,'20227820248124','{\"seq\": 173111, \"atme\": false, \"font\": \"宋体\", \"rand\": 1897705316, \"time\": 1657283048, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 71437500, \"nickname\": \"QQ\"}, \"message\": [{\"text\": \"有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 71437500, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIQRCDLwAAqQ3cRyvZGLIIegB\", \"raw_message\": \"有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-08 12:24:08',NULL),(270,'20227820411188','{\"seq\": 11270, \"atme\": false, \"font\": \"宋体\", \"rand\": 1347288162, \"time\": 1657284061, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"female\", \"area\": \"成都\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3184420136, \"nickname\": \"候鸟\"}, \"message\": [{\"text\": \"赶紧求助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3184420136, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVgr3OZSgAACwGUE38YmLIJd0B\", \"raw_message\": \"赶紧求助\", \"message_type\": \"group\"}','求助',1,'2022-07-08 12:41:01',NULL),(271,'202278204123174','{\"seq\": 6309, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1599860323, \"time\": 1657284083, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABilX1vuY2LIJfMB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-08 12:41:23',NULL),(272,'202278204147181','{\"seq\": 33431, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1894564539, \"time\": 1657284107, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIKXcOzCu2LIJgsB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-08 12:41:47',NULL),(273,'202278211758166','{\"seq\": 377276, \"atme\": false, \"font\": \"宋体\", \"rand\": 1259350425, \"time\": 1657286277, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 7823628, \"text\": \"@Like4lone\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2784460391-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABcG8SxApmWLILoUB\", \"raw_message\": \"@Like4lone 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 13:17:58',NULL),(274,'20227821267145','{\"seq\": 377350, \"atme\": false, \"font\": \"宋体\", \"rand\": 1198470915, \"time\": 1657286767, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1243933010, \"text\": \"@boring\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2786484239-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABcIGR283A2LIMG8B\", \"raw_message\": \"@boring 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 13:26:07',NULL),(275,'202278213040181','{\"seq\": 377383, \"atme\": false, \"font\": \"宋体\", \"rand\": 685700452, \"time\": 1657287039, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1773897072, \"text\": \"@贴贴\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2590313315-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABcInKN71ZGLIMX8B\", \"raw_message\": \"@贴贴 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 13:30:40',NULL),(276,'202278213710136','{\"seq\": 377417, \"atme\": false, \"font\": \"宋体\", \"rand\": 1120361255, \"time\": 1657287430, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 779534500, \"text\": \"@口袋没有妖怪\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2751973128-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABcJJQsdbJ2LIMwYB\", \"raw_message\": \"@口袋没有妖怪 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 13:37:10',NULL),(277,'202278215522126','{\"seq\": 12250, \"atme\": false, \"font\": \"汉仪蝶语体简\", \"rand\": 59986059, \"time\": 1657288522, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 361777032, \"nickname\": \"浮华升梦尽是沧桑丶\"}, \"message\": [{\"text\": \"写网关登录器有接单的大佬吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 361777032, \"group_id\": 773783754, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"极速帮程序员外包\", \"message_id\": \"Lh8AyhWQR4gAAC/aA5NQi2LIN0oB\", \"raw_message\": \"写网关登录器有接单的大佬吗\", \"message_type\": \"group\"}','有接单的',1,'2022-07-08 13:55:22',NULL),(278,'202278215757169','{\"seq\": 377503, \"atme\": false, \"font\": \"宋体\", \"rand\": 163778022, \"time\": 1657288676, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 513758593, \"text\": \"@jerry\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2900987321-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABcKfCcMN5mLIN+QB\", \"raw_message\": \"@jerry 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 13:57:57',NULL),(279,'20227822120121','{\"seq\": 31249, \"atme\": false, \"font\": \"宋体\", \"rand\": 472363222, \"time\": 1657288880, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 71437500, \"nickname\": \"QQ\"}, \"message\": [{\"text\": \"Java有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 71437500, \"group_id\": 828816138, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"pytorch/django/vue技术交流\", \"message_id\": \"MWa7CgRCDLwAAHoRHCew1mLIOLAB\", \"raw_message\": \"Java有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-08 14:01:20',NULL),(280,'202278221239143','{\"seq\": 15288, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 825599174, \"time\": 1657289559, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 35, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 4077725, \"nickname\": \"姜闹钟\"}, \"message\": [{\"text\": \"有谁用vite vue3 vant quasar 吗?100元付费完善一下框架。\\r疑问:vite vue3 项目中如何添加quasar组件?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 4077725, \"group_id\": 601944959, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Quasar Vue 学习交流群\", \"message_id\": \"I+DzfwA+OJ0AADu4MTWkxmLIO1cB\", \"raw_message\": \"有谁用vite vue3 vant quasar 吗?100元付费完善一下框架。\\r疑问:vite vue3 项目中如何添加quasar组件?\", \"message_type\": \"group\"}','付费',1,'2022-07-08 14:12:39',NULL),(281,'202278222414135','{\"seq\": 377701, \"atme\": false, \"font\": \"宋体\", \"rand\": 1345858546, \"time\": 1657290254, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2433771445, \"text\": \"@Why\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2686243755-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABcNlUDgr8mLIPg4B\", \"raw_message\": \"@Why 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 14:24:14',NULL),(282,'202278222413121','{\"seq\": 377700, \"atme\": false, \"font\": \"宋体\", \"rand\": 365733570, \"time\": 1657290253, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2919320053, \"text\": \"@雨痕\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3122212967-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABcNkFcymwmLIPg0B\", \"raw_message\": \"@雨痕 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 14:24:13',NULL),(283,'202278224050155','{\"seq\": 19778, \"atme\": false, \"font\": \"宋体\", \"rand\": 2129267894, \"time\": 1657291250, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 320390859, \"nickname\": \"财源广进\"}, \"source\": {\"seq\": 19776, \"rand\": 643581376, \"time\": 1657287878, \"message\": \"@财源广进 菜单管理那个页面可以配置\", \"user_id\": 346648997}, \"message\": [{\"qq\": 346648997, \"text\": \"@蔡先生。\", \"type\": \"at\"}, {\"text\": \" 谢谢,大佬配置了还是有问题。让同事帮忙有空解决下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 320390859, \"group_id\": 683903138, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JeecgBoot群Vue3①\", \"message_id\": \"KMOIohMYxssAAE1CfuoMtmLIQfIB\", \"raw_message\": \"@蔡先生。 谢谢,大佬配置了还是有问题。让同事帮忙有空解决下\", \"message_type\": \"group\"}','帮忙',1,'2022-07-08 14:40:50',NULL),(284,'202278225114124','{\"seq\": 377853, \"atme\": false, \"font\": \"宋体\", \"rand\": 378523274, \"time\": 1657291874, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2874780462, \"text\": \"@0.2℃\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2832999363-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABcP9Fo/OimLIRGIB\", \"raw_message\": \"@0.2℃ 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 14:51:14',NULL),(285,'202278225413135','{\"seq\": 1325601, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3256355524, \"time\": 1657292053, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"\", \"card\": \"SKY[交流]Shmily\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1404645144, \"nickname\": \"shmily🍀\"}, \"message\": [{\"text\": \"大佬们,帮忙看看,为啥报错了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1404645144, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphclO5LxgAFDohwhgKxGLIRRUB\", \"raw_message\": \"大佬们,帮忙看看,为啥报错了\", \"message_type\": \"group\"}','帮忙',1,'2022-07-08 14:54:13',NULL),(286,'202278225813183','{\"seq\": 6311, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1014006595, \"time\": 1657292293, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABinPHCDQ2LIRgUB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-08 14:58:13',NULL),(287,'20227823340168','{\"seq\": 60212, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2372314348, \"time\": 1657292620, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 234958906, \"nickname\": \"中云AI智能云防护小可\"}, \"message\": [{\"text\": \"专业解决服务器被攻击问题,先解决后付费!需要的联系\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 234958906, \"group_id\": 955416469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小程序app开发接单群\", \"message_id\": \"OPJ/lQ4BMDoAAOs0jWak7GLIR0wB\", \"raw_message\": \"专业解决服务器被攻击问题,先解决后付费!需要的联系\", \"message_type\": \"group\"}','付费',1,'2022-07-08 15:03:40',NULL),(288,'20227823958135','{\"seq\": 377885, \"atme\": false, \"font\": \"宋体\", \"rand\": 1783953813, \"time\": 1657292997, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3125667110, \"nickname\": \"客官\"}, \"message\": [{\"text\": \"你帮忙搭建不累?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3125667110, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h67pN5SYABcQdalT5lWLISMUB\", \"raw_message\": \"你帮忙搭建不累?\", \"message_type\": \"group\"}','帮忙',1,'2022-07-08 15:09:58',NULL),(289,'20227823156163','{\"seq\": 1325742, \"atme\": false, \"font\": \"宋体\", \"rand\": 106521716, \"time\": 1657293306, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[南北]东西\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2927380118, \"nickname\": \"南北东西\"}, \"message\": [{\"text\": \"大佬们。在线求帮助。\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2927380118, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcq58RpYAFDquBllkdGLISfoB\", \"raw_message\": \"大佬们。在线求帮助。\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 15:15:06',NULL),(290,'20227823160188','{\"seq\": 1325756, \"atme\": false, \"font\": \"宋体\", \"rand\": 1833746865, \"time\": 1657293360, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[南北]东西\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2927380118, \"nickname\": \"南北东西\"}, \"message\": [{\"text\": \"/拍桌/拍桌/拍桌求帮助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2927380118, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcq58RpYAFDq8bUzBsWLISjAB\", \"raw_message\": \"/拍桌/拍桌/拍桌求帮助\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 15:16:00',NULL),(291,'20227823173102','{\"seq\": 9881, \"atme\": false, \"font\": \"宋体\", \"rand\": 175193347, \"time\": 1657293423, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2927380118, \"nickname\": \"南北东西\"}, \"message\": [{\"text\": \"在线求帮助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2927380118, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaK58RpYAACaZCnE9A2LISm8B\", \"raw_message\": \"在线求帮助\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 15:17:03',NULL),(292,'202278231856102','{\"seq\": 70307, \"atme\": false, \"font\": \"宋体\", \"rand\": 2147171096, \"time\": 1657293536, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2936024763, \"nickname\": \".\"}, \"message\": [{\"text\": \"有没有人能做抽奖模拟器 付费\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2936024763/727364469-2172483322-CF7865658F3768C255FC51030AD68CB8/0?term=2\", \"file\": \"cf7865658f3768c255fc51030ad68cb8362481-2436-1126.jpg\", \"type\": \"image\", \"asface\": false}], \"self_id\": 1841031740, \"user_id\": 2936024763, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzda8ALrsAARKjf/s7GGLISuAB\", \"raw_message\": \"有没有人能做抽奖模拟器 付费[图片]\", \"message_type\": \"group\"}','付费',1,'2022-07-08 15:18:56',NULL),(293,'2022790032166','{\"seq\": 70988, \"atme\": false, \"font\": \"宋体\", \"rand\": 102606900, \"time\": 1657296031, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1248282555, \"nickname\": \"狄大人呐\"}, \"message\": [{\"text\": \"有钱的多花钱 没钱的少花钱\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1248282555, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE前端划水群\", \"message_id\": \"J/+MYEpnR7sAARVMBh2oNGLIVJ8B\", \"raw_message\": \"有钱的多花钱 没钱的少花钱\", \"message_type\": \"group\"}','花钱',1,'2022-07-08 16:00:32',NULL),(294,'20227901053156','{\"seq\": 4475, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 438524071, \"time\": 1657296653, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 33, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 811948956, \"nickname\": \"网站APP定制开发\"}, \"message\": [{\"text\": \"个人接单:各行各业网站模板 建站一条龙 快速仿站 靠谱 长期合作\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 811948956, \"group_id\": 124041790, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React外包交流群\", \"message_id\": \"B2S6PjBlW5wAABF7GiNYp2LIVw0B\", \"raw_message\": \"个人接单:各行各业网站模板 建站一条龙 快速仿站 靠谱 长期合作\", \"message_type\": \"group\"}','人接单',1,'2022-07-08 16:10:53',NULL),(295,'20227905638104','{\"seq\": 71232, \"atme\": false, \"font\": \"宋体\", \"rand\": 1598939735, \"time\": 1657299398, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2927380118, \"nickname\": \"南北东西\"}, \"message\": [{\"text\": \"vue帮助。\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2927380118, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE前端划水群\", \"message_id\": \"J/+MYK58RpYAARZAX03iV2LIYcYB\", \"raw_message\": \"vue帮助。\", \"message_type\": \"group\"}','帮助',1,'2022-07-08 16:56:38',NULL),(296,'2022791027127','{\"seq\": 33437, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1687183139, \"time\": 1657299627, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIKdZJBfI2LIYqsB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-08 17:00:27',NULL),(297,'202271085220171','{\"seq\": 515647, \"atme\": false, \"font\": \"黑体\", \"rand\": 2293136126, \"time\": 1657414339, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1739944268, \"nickname\": \"雪月清辉\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/1739944268/538246944-2613896040-5E549A8AB2A15588755E4EA3C68D82C7/0?term=2\", \"file\": \"5e549a8ab2a15588755e4ea3c68d82c7150695-1920-1030.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"有偿求助nuxt3如何使用class-validator?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1739944268, \"group_id\": 538246944, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JS、Vue、Element-UI技术栈\", \"message_id\": \"IBT/IGe1cUwAB94/iK56/mLKIsMB\", \"raw_message\": \"[图片]有偿求助nuxt3如何使用class-validator?\", \"message_type\": \"group\"}','有偿',1,'2022-07-10 00:52:20',NULL),(298,'202271094543120','{\"seq\": 380271, \"atme\": false, \"font\": \"宋体\", \"rand\": 1662771750, \"time\": 1657417543, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2486669, \"text\": \"@(¯﹄¯)\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2466342052-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABc1vYxviJmLKL0cB\", \"raw_message\": \"@(¯﹄¯) 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 01:45:43',NULL),(299,'202271094546171','{\"seq\": 380272, \"atme\": false, \"font\": \"宋体\", \"rand\": 821257109, \"time\": 1657417545, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2908359293, \"text\": \"@134高志远\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2641626712-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABc1wMPNjlWLKL0kB\", \"raw_message\": \"@134高志远 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 01:45:46',NULL),(300,'202271094537165','{\"seq\": 380270, \"atme\": false, \"font\": \"宋体\", \"rand\": 1654696453, \"time\": 1657417536, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2264448097, \"text\": \"@Ice\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2199048779-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABc1uYqCqBWLKL0AB\", \"raw_message\": \"@Ice 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 01:45:37',NULL),(301,'202271094547182','{\"seq\": 380273, \"atme\": false, \"font\": \"宋体\", \"rand\": 1665557115, \"time\": 1657417547, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2276840542, \"text\": \"@Miracle\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3147412894-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABc1xY0Zie2LKL0sB\", \"raw_message\": \"@Miracle 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 01:45:47',NULL),(302,'202271094549130','{\"seq\": 380274, \"atme\": false, \"font\": \"宋体\", \"rand\": 628489072, \"time\": 1657417549, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1841579966, \"text\": \"@早睡早起身体好\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2285188696-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABc1yJXX7cGLKL00B\", \"raw_message\": \"@早睡早起身体好 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 01:45:49',NULL),(303,'202271094552151','{\"seq\": 380275, \"atme\": false, \"font\": \"宋体\", \"rand\": 1270509878, \"time\": 1657417552, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2844790961, \"text\": \"@Ezio\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2988329953-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABc1zS7pxNmLKL1AB\", \"raw_message\": \"@Ezio 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 01:45:52',NULL),(304,'202271094555157','{\"seq\": 380276, \"atme\": false, \"font\": \"宋体\", \"rand\": 719359623, \"time\": 1657417554, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 97394627, \"text\": \"@小布\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2857604908-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABc10KuCOh2LKL1IB\", \"raw_message\": \"@小布 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 01:45:55',NULL),(305,'202271094559106','{\"seq\": 380277, \"atme\": false, \"font\": \"宋体\", \"rand\": 1882620926, \"time\": 1657417558, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1371874003, \"text\": \"@炫酷感觉\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2395244043-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABc11cDaD/mLKL1YB\", \"raw_message\": \"@炫酷感觉 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 01:45:59',NULL),(306,'2022710103730181','{\"seq\": 1331423, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2030519395, \"time\": 1657420650, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"信阳\", \"card\": \"SKY[一杯]美逝\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2029001663, \"nickname\": \"一杯美逝\"}, \"message\": [{\"text\": \"机构会帮助就业\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2029001663, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcnjwG78AFFDfeQdEY2LKO2oB\", \"raw_message\": \"机构会帮助就业\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 02:37:30',NULL),(307,'202271010426149','{\"seq\": 380333, \"atme\": false, \"font\": \"宋体\", \"rand\": 1610323180, \"time\": 1657420926, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 3404578375, \"text\": \"@子雨\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2889495348-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABc2tX/uU7GLKPH4B\", \"raw_message\": \"@子雨 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 02:42:06',NULL),(308,'202271011510144','{\"seq\": 1331685, \"atme\": false, \"font\": \"宋体\", \"rand\": 1417989089, \"time\": 1657422309, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[交流]聽聽\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 44696368, \"nickname\": \"聽\"}, \"message\": [{\"text\": \"上班都累了 还来群里解决问题 不想死的太快\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 44696368, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcgKqAzAAFFHlVITL4WLKQeUB\", \"raw_message\": \"上班都累了 还来群里解决问题 不想死的太快\", \"message_type\": \"group\"}','解决问题',1,'2022-07-10 03:05:10',NULL),(309,'2022710113728172','{\"seq\": 380374, \"atme\": false, \"font\": \"宋体\", \"rand\": 852600336, \"time\": 1657424247, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"正在学习WEB全栈\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 80418684, \"nickname\": \"o\"}, \"message\": [{\"text\": \"别花钱买课程,妥妥智商税\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 80418684, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6wTLF3wABc3WMtGmEGLKSXcB\", \"raw_message\": \"别花钱买课程,妥妥智商税\", \"message_type\": \"group\"}','花钱',1,'2022-07-10 03:37:28',NULL),(310,'2022710114747158','{\"seq\": 380428, \"atme\": false, \"font\": \"宋体\", \"rand\": 811088925, \"time\": 1657424867, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2240968745, \"text\": \"@\\\\\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2958188984-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABc4MMFg8HWLKS+MB\", \"raw_message\": \"@\\\\ 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 03:47:47',NULL),(311,'2022710114750136','{\"seq\": 380429, \"atme\": false, \"font\": \"宋体\", \"rand\": 82805110, \"time\": 1657424870, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2368693162, \"text\": \"@一只秀儿\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2706830875-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABc4NBO+BdmLKS+YB\", \"raw_message\": \"@一只秀儿 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 03:47:50',NULL),(312,'2022710114745110','{\"seq\": 380427, \"atme\": false, \"font\": \"宋体\", \"rand\": 303977896, \"time\": 1657424865, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 309803141, \"text\": \"@.\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2837637678-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABc4LEh5VqGLKS+EB\", \"raw_message\": \"@. 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 03:47:45',NULL),(313,'2022710114946123','{\"seq\": 13244, \"atme\": false, \"font\": \"宋体\", \"rand\": 219308577, \"time\": 1657424986, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 29, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 794713541, \"nickname\": \"隐士工作室\"}, \"message\": [{\"text\": \"最新技术Ai智能采集万词霸屏技术,不限制任何行业推广,需要的联系我,信誉方面找隐士,看好号码,谨防冒充骗子\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 794713541, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VC9eXcUAADO8DRJiIWLKTFoB\", \"raw_message\": \"最新技术Ai智能采集万词霸屏技术,不限制任何行业推广,需要的联系我,信誉方面找隐士,看好号码,谨防冒充骗子\", \"message_type\": \"group\"}','联系我',1,'2022-07-10 03:49:46',NULL),(314,'2022710125734189','{\"seq\": 13248, \"atme\": false, \"font\": \"宋体\", \"rand\": 2962442408, \"time\": 1657429053, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2339510255, \"nickname\": \"Dream_Sanye\"}, \"message\": [{\"text\": \"出售带分销制度的商城系统\\n单商户,多商户 多门店版 \\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\\n\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2339510255, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VItyF+8AADPAsJNIqGLKXD0B\", \"raw_message\": \"出售带分销制度的商城系统\\n单商户,多商户 多门店版 \\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\\n\", \"message_type\": \"group\"}','联系我',1,'2022-07-10 04:57:34',NULL),(315,'2022710131419160','{\"seq\": 13250, \"atme\": false, \"font\": \"宋体\", \"rand\": 3771881374, \"time\": 1657430059, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2339510255, \"nickname\": \"Dream_Sanye\"}, \"message\": [{\"text\": \"出售带分销制度的商城系统\\n单商户,多商户 多门店版 \\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2339510255, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VItyF+8AADPC4NJXnmLKYCsB\", \"raw_message\": \"出售带分销制度的商城系统\\n单商户,多商户 多门店版 \\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-10 05:14:19',NULL),(316,'2022710135236116','{\"seq\": 10423, \"atme\": false, \"font\": \"宋体\", \"rand\": 854603391, \"time\": 1657432356, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 88337, \"nickname\": \"佐佑\"}, \"message\": [{\"text\": \"群里有帮忙改个vue前端某个功能然后看怎么收费\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 88337, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaAABWREAACi3MvA2f2LKaSQB\", \"raw_message\": \"群里有帮忙改个vue前端某个功能然后看怎么收费\", \"message_type\": \"group\"}','帮忙',1,'2022-07-10 05:52:36',NULL),(317,'2022710141547171','{\"seq\": 380584, \"atme\": false, \"font\": \"宋体\", \"rand\": 1907389276, \"time\": 1657433747, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 344735648, \"text\": \"@今天喝水了吗?\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2289971619-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABc6ocbBzXGLKbpMB\", \"raw_message\": \"@今天喝水了吗? 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 06:15:47',NULL),(318,'2022710141544165','{\"seq\": 380582, \"atme\": false, \"font\": \"宋体\", \"rand\": 1748761574, \"time\": 1657433743, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2862418695, \"text\": \"@初久\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2575847636-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABc6maDv75mLKbo8B\", \"raw_message\": \"@初久 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 06:15:44',NULL),(319,'202271014166142','{\"seq\": 33483, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 125085905, \"time\": 1657433766, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAILLB3So0WLKbqYB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-10 06:16:06',NULL),(320,'2022710141620148','{\"seq\": 6338, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 378821335, \"time\": 1657433780, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABjCFpRa12LKbrQB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-10 06:16:20',NULL),(321,'2022710141939133','{\"seq\": 380607, \"atme\": false, \"font\": \"宋体\", \"rand\": 273667829, \"time\": 1657433979, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 344735648, \"nickname\": \"今天喝水了吗?\"}, \"message\": [{\"text\": \"我想求助一下关于HTML的问题QAQ已经琢磨一个上午了还没解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 344735648, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6xSMP6AABc6/EE/W9WLKb3sB\", \"raw_message\": \"我想求助一下关于HTML的问题QAQ已经琢磨一个上午了还没解决\", \"message_type\": \"group\"}','求助',1,'2022-07-10 06:19:39',NULL),(322,'2022710144113124','{\"seq\": 380706, \"atme\": false, \"font\": \"宋体\", \"rand\": 1097544429, \"time\": 1657435273, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 344735648, \"nickname\": \"今天喝水了吗?\"}, \"message\": [{\"text\": \"接下来的问题就是:\\n求助表单怎么调节颜色字体大小之类呢?\\n以及要做出蓝色部分表格部分,用table,tr,td,就能做出来那种效果么\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 344735648, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6xSMP6AABc8iQWsy7WLKdIkB\", \"raw_message\": \"接下来的问题就是:\\n求助表单怎么调节颜色字体大小之类呢?\\n以及要做出蓝色部分表格部分,用table,tr,td,就能做出来那种效果么\", \"message_type\": \"group\"}','求助',1,'2022-07-10 06:41:13',NULL),(323,'2022710144242148','{\"seq\": 10431, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4168963234, \"time\": 1657435362, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 120, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1636911410, \"nickname\": \"ctilc\"}, \"message\": [{\"text\": \"有偿请教问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1636911410, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaGGRSTIAACi/+H1UomLKdOIB\", \"raw_message\": \"有偿请教问题\", \"message_type\": \"group\"}','有偿',1,'2022-07-10 06:42:42',NULL),(324,'2022710144721168','{\"seq\": 380748, \"atme\": false, \"font\": \"宋体\", \"rand\": 1713780754, \"time\": 1657435641, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1509563811, \"text\": \"@魅漓\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2392647880-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABc9MZiY4EmLKdfkB\", \"raw_message\": \"@魅漓 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 06:47:21',NULL),(325,'202271014495160','{\"seq\": 380755, \"atme\": false, \"font\": \"宋体\", \"rand\": 589742917, \"time\": 1657435745, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 344735648, \"nickname\": \"今天喝水了吗?\"}, \"message\": [{\"text\": \"QAQ谢谢帮助,还有楼上的两位\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 344735648, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6xSMP6AABc9TIybDRWLKdmEB\", \"raw_message\": \"QAQ谢谢帮助,还有楼上的两位\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 06:49:05',NULL),(326,'202271015952146','{\"seq\": 274805, \"atme\": false, \"font\": \"宋体\", \"rand\": 32055312, \"time\": 1657436992, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 5, \"sex\": \"unknown\", \"area\": \"叙利亚\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3442691178, \"nickname\": \"不吃\"}, \"message\": [{\"text\": \"有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3442691178, \"group_id\": 692522608, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端Vue开发程序员贰\", \"message_id\": \"KUcOcM0zTGoABDF1AekgEGLKe0AB\", \"raw_message\": \"有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-10 07:09:52',NULL),(327,'202271015948184','{\"seq\": 274804, \"atme\": false, \"font\": \"宋体\", \"rand\": 2127671171, \"time\": 1657436988, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 5, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3442691178, \"nickname\": \"不吃\"}, \"message\": [{\"text\": \"那我大佬有空帮忙改改bug\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3442691178, \"group_id\": 692522608, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端Vue开发程序员贰\", \"message_id\": \"KUcOcM0zTGoABDF0ftGvg2LKezwB\", \"raw_message\": \"那我大佬有空帮忙改改bug\", \"message_type\": \"group\"}','帮忙',1,'2022-07-10 07:09:48',NULL),(328,'202271015108184','{\"seq\": 380870, \"atme\": false, \"font\": \"宋体\", \"rand\": 1424260226, \"time\": 1657437007, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 5, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3442691178, \"nickname\": \"不吃\"}, \"message\": [{\"text\": \"那我大佬有空帮忙改改bug很简单的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3442691178, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h680zTGoABc/GVOR8gmLKe08B\", \"raw_message\": \"那我大佬有空帮忙改改bug很简单的\", \"message_type\": \"group\"}','帮忙',1,'2022-07-10 07:10:08',NULL),(329,'2022710151012177','{\"seq\": 380871, \"atme\": false, \"font\": \"宋体\", \"rand\": 1799268624, \"time\": 1657437012, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 5, \"sex\": \"unknown\", \"area\": \"叙利亚\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3442691178, \"nickname\": \"不吃\"}, \"message\": [{\"text\": \"有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3442691178, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h680zTGoABc/Haz6pEGLKe1QB\", \"raw_message\": \"有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-10 07:10:12',NULL),(330,'2022710152220107','{\"seq\": 10448, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1560446358, \"time\": 1657437740, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 39058347, \"nickname\": \"代码人生\"}, \"message\": [{\"text\": \"有没有高手,付费解决一个页面跳转的问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 39058347, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaAJT+6sAACjQXQKFlmLKfiwB\", \"raw_message\": \"有没有高手,付费解决一个页面跳转的问题\", \"message_type\": \"group\"}','付费',1,'2022-07-10 07:22:20',NULL),(331,'2022710155435117','{\"seq\": 380911, \"atme\": false, \"font\": \"宋体\", \"rand\": 1014622639, \"time\": 1657439675, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1402295455, \"text\": \"@꧁꫞苏落盏꫞꧂\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3016518809-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABc/vPHnpr2LKhbsB\", \"raw_message\": \"@꧁꫞苏落盏꫞꧂ 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 07:54:35',NULL),(332,'2022710155438136','{\"seq\": 380912, \"atme\": false, \"font\": \"宋体\", \"rand\": 506724808, \"time\": 1657439678, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1805650224, \"text\": \"@缄鱼\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3106791497-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABc/wHjQByGLKhb4B\", \"raw_message\": \"@缄鱼 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 07:54:38',NULL),(333,'2022710155432138','{\"seq\": 380910, \"atme\": false, \"font\": \"宋体\", \"rand\": 2094395458, \"time\": 1657439672, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 568520136, \"text\": \"@嗷\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2267781019-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABc/ufNXwQmLKhbgB\", \"raw_message\": \"@嗷 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 07:54:32',NULL),(334,'2022710155510173','{\"seq\": 380916, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 93009321, \"time\": 1657439710, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1805650224, \"nickname\": \"缄鱼\"}, \"message\": [{\"text\": \"有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1805650224, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h62ugCTAABc/0BYs1qWLKhd4B\", \"raw_message\": \"有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-10 07:55:10',NULL),(335,'2022710155547144','{\"seq\": 380918, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4141081580, \"time\": 1657439747, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1805650224, \"nickname\": \"缄鱼\"}, \"message\": [{\"text\": \"200求助个问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1805650224, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h62ugCTAABc/29tPj7GLKhgMB\", \"raw_message\": \"200求助个问题\", \"message_type\": \"group\"}','求助',1,'2022-07-10 07:55:47',NULL),(336,'202271016057173','{\"seq\": 13258, \"atme\": false, \"font\": \"宋体\", \"rand\": 2794458896, \"time\": 1657440057, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2339510255, \"nickname\": \"Dream_Sanye\"}, \"message\": [{\"text\": \"出售带分销制度的商城系统\\n三级分销+平级奖+级差奖+业绩分红+独立佣金\\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2339510255, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VItyF+8AADPKppAPEGLKhzkB\", \"raw_message\": \"出售带分销制度的商城系统\\n三级分销+平级奖+级差奖+业绩分红+独立佣金\\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-10 08:00:57',NULL),(337,'2022710161627113','{\"seq\": 13260, \"atme\": false, \"font\": \"宋体\", \"rand\": 1657443003, \"time\": 1657440987, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 43, \"sex\": \"male\", \"area\": \"嘉义县\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2647798877, \"nickname\": \"易新科技\"}, \"message\": [{\"text\": \"阿里云备案cn有货,需要的联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2647798877, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VJ3SNF0AADPMYsqSu2LKitsB\", \"raw_message\": \"阿里云备案cn有货,需要的联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-10 08:16:27',NULL),(338,'2022710165053166','{\"seq\": 13261, \"atme\": false, \"font\": \"宋体\", \"rand\": 312180116, \"time\": 1657443053, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2339510255, \"nickname\": \"Dream_Sanye\"}, \"message\": [{\"text\": \"出售带分销制度的商城系统\\n三级分销+平级奖+级差奖+业绩分红+独立佣金\\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2339510255, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VItyF+8AADPNEpt9lGLKku0B\", \"raw_message\": \"出售带分销制度的商城系统\\n三级分销+平级奖+级差奖+业绩分红+独立佣金\\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-10 08:50:53',NULL),(339,'202271018143118','{\"seq\": 8143, \"atme\": false, \"font\": \"宋体\", \"rand\": 807383983, \"time\": 1657447303, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 245636377, \"nickname\": \"007\"}, \"message\": [{\"text\": \"想做兼职的可以找我,手机操作就行,赚点零花钱200-300还是没问题的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 245636377, \"group_id\": 967252553, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"ps,美工,ui,P图\", \"message_id\": \"OacaSQ6kHRkAAB/PMB+zr2LKo4cB\", \"raw_message\": \"想做兼职的可以找我,手机操作就行,赚点零花钱200-300还是没问题的\", \"message_type\": \"group\"}','花钱',1,'2022-07-10 10:01:43',NULL),(340,'2022710182859174','{\"seq\": 6341, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 205386038, \"time\": 1657448939, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABjFDD3xNmLKqesB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-10 10:28:59',NULL),(341,'2022710182851184','{\"seq\": 33488, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 684016918, \"time\": 1657448931, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAILQKMVFFmLKqeMB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-10 10:28:51',NULL),(342,'2022710183040177','{\"seq\": 162001, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 137995802, \"time\": 1657449040, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3181473424, \"nickname\": \"佛光\"}, \"message\": [{\"text\": \"\\r\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/3181473424/2075075235-2478403489-002478DA2FC1A786C4FDC2050B56F33D/0?term=2\", \"file\": \"002478da2fc1a786c4fdc2050b56f33d121217-442-748.jpg\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/3181473424/2075075235-2283361429-4AAF3AA763F1EAFBB47160F2905A82A1/0?term=2\", \"file\": \"4aaf3aa763f1eafbb47160f2905a82a193639-795-1720.jpg\", \"type\": \"image\", \"asface\": false}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/3181473424/2075075235-3055815269-E0BF1192010A0579670FC38F05094A99/0?term=2\", \"file\": \"e0bf1192010a0579670fc38f05094a99115226-1080-2338.jpg\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r网站,app , 游戏, 公众号, 商城, 支付, 企业官网 这些全都在做, 有需要的找我个人接单,赚点饭钱解决温饱, 去年成都酒吧到处玩花了 63万, 然后 股票, 基金, 亏了点, 今年重回老本行了,谢谢\", \"type\": \"text\"}, {\"id\": 78, \"text\": \"握手\", \"type\": \"face\"}], \"self_id\": 1841031740, \"user_id\": 3181473424, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O472hbpAAAnjRCDmmGmLKqlAB\", \"raw_message\": \"\\r[图片]\\r[图片][图片]\\r网站,app , 游戏, 公众号, 商城, 支付, 企业官网 这些全都在做, 有需要的找我个人接单,赚点饭钱解决温饱, 去年成都酒吧到处玩花了 63万, 然后 股票, 基金, 亏了点, 今年重回老本行了,谢谢[握手]\", \"message_type\": \"group\"}','人接单',1,'2022-07-10 10:30:40',NULL),(343,'2022710183154134','{\"seq\": 162002, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 489574884, \"time\": 1657449114, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"成都\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3181473424, \"nickname\": \"佛光\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/3181473424/2075075235-3219536952-002478DA2FC1A786C4FDC2050B56F33D/0?term=2\", \"file\": \"002478da2fc1a786c4fdc2050b56f33d121217-442-748.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r网站,app , 游戏, 公众号, 商城, 支付, 企业官网 这些全都在做, 有需要的找我个人接单,赚点饭钱解决温饱, 去年成都酒吧到处玩花了 63万, 然后 股票, 基金, 亏了点, 今年重回老本行了,谢谢\", \"type\": \"text\"}, {\"id\": 78, \"text\": \"握手\", \"type\": \"face\"}], \"self_id\": 1841031740, \"user_id\": 3181473424, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O472hbpAAAnjSHS5R5GLKqpoB\", \"raw_message\": \"[图片]\\r网站,app , 游戏, 公众号, 商城, 支付, 企业官网 这些全都在做, 有需要的找我个人接单,赚点饭钱解决温饱, 去年成都酒吧到处玩花了 63万, 然后 股票, 基金, 亏了点, 今年重回老本行了,谢谢[握手]\", \"message_type\": \"group\"}','人接单',1,'2022-07-10 10:31:54',NULL),(344,'202271019931179','{\"seq\": 1333358, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 26707615, \"time\": 1657451371, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"male\", \"area\": \"广州\", \"card\": \"SKY[交流]观成\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 69579501, \"nickname\": \"观成\"}, \"message\": [{\"text\": \"又不花钱\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 69579501, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcgQlsu0AFFhuAZeGn2LKs2sB\", \"raw_message\": \"又不花钱\", \"message_type\": \"group\"}','花钱',1,'2022-07-10 11:09:31',NULL),(345,'2022710191332147','{\"seq\": 381045, \"atme\": false, \"font\": \"宋体\", \"rand\": 684605816, \"time\": 1657451612, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1246459677, \"text\": \"@喜温\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2486296567-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdB1KM5BeGLKtFwB\", \"raw_message\": \"@喜温 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 11:13:32',NULL),(346,'2022710191334156','{\"seq\": 381046, \"atme\": false, \"font\": \"宋体\", \"rand\": 1921169434, \"time\": 1657451614, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 692728623, \"text\": \"@小mo\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2174737967-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdB2coK4GmLKtF4B\", \"raw_message\": \"@小mo 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 11:13:34',NULL),(347,'2022710195255101','{\"seq\": 173247, \"atme\": false, \"font\": \"宋体\", \"rand\": 1319431503, \"time\": 1657453975, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"绍杰\"}, \"message\": [{\"text\": \"朋友有解决不了的bug吗,给点好处,我可以帮忙解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1336322173, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIU+mqH0AAqS/TqTtT2LKvZcB\", \"raw_message\": \"朋友有解决不了的bug吗,给点好处,我可以帮忙解决\", \"message_type\": \"group\"}','帮忙',1,'2022-07-10 11:52:55',NULL),(348,'2022710195417149','{\"seq\": 49155, \"atme\": false, \"font\": \"宋体\", \"rand\": 855946737, \"time\": 1657454057, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"绍杰\"}, \"message\": [{\"text\": \"有解决不了的bug吗,给点好处,我可以帮忙解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1336322173, \"group_id\": 863981142, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"程序员接单群\", \"message_id\": \"M39OVk+mqH0AAMADMwS18WLKvekB\", \"raw_message\": \"有解决不了的bug吗,给点好处,我可以帮忙解决\", \"message_type\": \"group\"}','帮忙',1,'2022-07-10 11:54:17',NULL),(349,'2022710202149117','{\"seq\": 381103, \"atme\": false, \"font\": \"宋体\", \"rand\": 1894287790, \"time\": 1657455709, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2770448417, \"text\": \"@刘刘刘刘刘刘\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2548561530-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdCvcOiJrmLKxF0B\", \"raw_message\": \"@刘刘刘刘刘刘 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 12:21:49',NULL),(350,'2022710202150176','{\"seq\": 381104, \"atme\": false, \"font\": \"宋体\", \"rand\": 367620274, \"time\": 1657455710, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1196456915, \"text\": \"@yy\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2898187980-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdCwFelwsmLKxF4B\", \"raw_message\": \"@yy 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 12:21:50',NULL),(351,'2022710202151134','{\"seq\": 381105, \"atme\": false, \"font\": \"宋体\", \"rand\": 1822455932, \"time\": 1657455711, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1808800104, \"text\": \"@1808800104\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2440114264-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdCxbKB4fGLKxF8B\", \"raw_message\": \"@1808800104 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 12:21:51',NULL),(352,'2022710202154164','{\"seq\": 381106, \"atme\": false, \"font\": \"宋体\", \"rand\": 695008588, \"time\": 1657455714, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 321496575, \"text\": \"@code\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3015383616-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdCyKWz9TGLKxGIB\", \"raw_message\": \"@code 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 12:21:54',NULL),(353,'2022710202147172','{\"seq\": 381102, \"atme\": false, \"font\": \"宋体\", \"rand\": 976369923, \"time\": 1657455707, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 3025308404, \"text\": \"@misaka\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2544224629-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdCuOjI5A2LKxFsB\", \"raw_message\": \"@misaka 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 12:21:47',NULL),(354,'202271020422127','{\"seq\": 10691, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1311009795, \"time\": 1657456922, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 120, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1636911410, \"nickname\": \"ctilc\"}, \"message\": [{\"text\": \"心里想着解决问题为重要\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1636911410, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaGGRSTIAACnDTiRsA2LKyRoB\", \"raw_message\": \"心里想着解决问题为重要\", \"message_type\": \"group\"}','解决问题',1,'2022-07-10 12:42:02',NULL),(355,'2022710204636177','{\"seq\": 70530, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2188546026, \"time\": 1657457196, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 43, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3316125481, \"nickname\": \"实现梦想\"}, \"message\": [{\"text\": \"react native有人接单吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3316125481, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdcWoDykAAROCgnKP6mLKyiwB\", \"raw_message\": \"react native有人接单吗\", \"message_type\": \"group\"}','人接单',1,'2022-07-10 12:46:36',NULL),(356,'2022710204718177','{\"seq\": 124997, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2421600900, \"time\": 1657457238, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 43, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 3316125481, \"nickname\": \"实现梦想\"}, \"message\": [{\"text\": \"react native有人接单吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3316125481, \"group_id\": 939900655, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue/react/uniapp前端后端\", \"message_id\": \"OAW+78WoDykAAehFkFayhGLKylYB\", \"raw_message\": \"react native有人接单吗\", \"message_type\": \"group\"}','人接单',1,'2022-07-10 12:47:18',NULL),(357,'2022710204813145','{\"seq\": 1333666, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1630948740, \"time\": 1657457293, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[玻璃]球子\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1240923326, \"nickname\": \"玻璃球子\"}, \"message\": [{\"text\": \"老哥们帮帮忙\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1240923326, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphckn2/L4AFFmiYTZNhGLKyo0B\", \"raw_message\": \"老哥们帮帮忙\", \"message_type\": \"group\"}','帮忙',1,'2022-07-10 12:48:13',NULL),(358,'202271021353151','{\"seq\": 33490, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2149865900, \"time\": 1657458233, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2975613015, \"nickname\": \"王火火\"}, \"message\": [{\"text\": \"中云Ai云防护系统防CC,抗DDOS,防黑,防入侵,防篡改,防漏洞,先防御,后付费!联系电话:19372416211\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2975613015, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMLFcQFcAAILSgCRZrGLKzjkB\", \"raw_message\": \"中云Ai云防护系统防CC,抗DDOS,防黑,防入侵,防篡改,防漏洞,先防御,后付费!联系电话:19372416211\", \"message_type\": \"group\"}','付费',1,'2022-07-10 13:03:53',NULL),(359,'2022710211733178','{\"seq\": 13270, \"atme\": false, \"font\": \"宋体\", \"rand\": 30100780, \"time\": 1657459053, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2339510255, \"nickname\": \"Dream_Sanye\"}, \"message\": [{\"text\": \"出售带分销制度的商城系统\\n三级分销+平级奖+级差奖+业绩分红+独立佣金\\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2339510255, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VItyF+8AADPWActNLGLK0W0B\", \"raw_message\": \"出售带分销制度的商城系统\\n三级分销+平级奖+级差奖+业绩分红+独立佣金\\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-10 13:17:33',NULL),(360,'2022710212518124','{\"seq\": 173379, \"atme\": false, \"font\": \"宋体\", \"rand\": 249848743, \"time\": 1657459518, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"江西\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1261198905, \"nickname\": \"🍳\"}, \"source\": {\"seq\": 173376, \"rand\": 14680146, \"time\": 1657459487, \"message\": \"什么30?\", \"user_id\": 467078557}, \"message\": [{\"qq\": 467078557, \"text\": \"@江上清风游\", \"type\": \"at\"}, {\"text\": \" 解决问题30块钱\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1261198905, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIUssXjkAAqVDDuRjp2LK0z4B\", \"raw_message\": \"@江上清风游 解决问题30块钱\", \"message_type\": \"group\"}','解决问题',1,'2022-07-10 13:25:18',NULL),(361,'2022710214218107','{\"seq\": 70532, \"atme\": false, \"font\": \"宋体\", \"rand\": 560082293, \"time\": 1657460538, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"绍杰\"}, \"message\": [{\"text\": \"有解决不了的bug,给点好处。我可以帮忙\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1336322173, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdU+mqH0AAROEIWItdWLK1zoB\", \"raw_message\": \"有解决不了的bug,给点好处。我可以帮忙\", \"message_type\": \"group\"}','帮忙',1,'2022-07-10 13:42:18',NULL),(362,'202271021480127','{\"seq\": 525702, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4286795542, \"time\": 1657460880, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 34, \"sex\": \"male\", \"area\": \"广安\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2011604821, \"nickname\": \"故事与她\"}, \"message\": [{\"text\": \"花钱\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2011604821, \"group_id\": 687948914, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue、Nodejs 开发交流\", \"message_id\": \"KQFEcnfmp1UACAWG/4NPFmLK2JAB\", \"raw_message\": \"花钱\", \"message_type\": \"group\"}','花钱',1,'2022-07-10 13:48:00',NULL),(363,'2022710214936127','{\"seq\": 13275, \"atme\": false, \"font\": \"宋体\", \"rand\": 4011980023, \"time\": 1657460976, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2339510255, \"nickname\": \"Dream_Sanye\"}, \"message\": [{\"text\": \"出售带分销制度的商城系统\\n三级分销+平级奖+级差奖+业绩分红+独立佣金\\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2339510255, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VItyF+8AADPb7yH092LK2PAB\", \"raw_message\": \"出售带分销制度的商城系统\\n三级分销+平级奖+级差奖+业绩分红+独立佣金\\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-10 13:49:36',NULL),(364,'2022710223054161','{\"seq\": 381352, \"atme\": false, \"font\": \"宋体\", \"rand\": 1168603943, \"time\": 1657463454, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1950064735, \"text\": \"@ㅤ\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2730151219-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdGoRad7J2LK4p4B\", \"raw_message\": \"@ㅤ 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 14:30:54',NULL),(365,'2022710223051155','{\"seq\": 381351, \"atme\": false, \"font\": \"宋体\", \"rand\": 329898772, \"time\": 1657463451, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2648894665, \"text\": \"@知否知否\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2314350256-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdGnE6nbFGLK4psB\", \"raw_message\": \"@知否知否 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 14:30:51',NULL),(366,'2022710225159151','{\"seq\": 381371, \"atme\": false, \"font\": \"宋体\", \"rand\": 729307112, \"time\": 1657464719, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2496417370, \"text\": \"@determination\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2695340194-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdG7K3hX6GLK548B\", \"raw_message\": \"@determination 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 14:51:59',NULL),(367,'2022710225949186','{\"seq\": 381372, \"atme\": false, \"font\": \"宋体\", \"rand\": 1536251858, \"time\": 1657465189, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2458830837, \"text\": \"@大大大佬鼠\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2220947452-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdG8W5FX0mLK6WUB\", \"raw_message\": \"@大大大佬鼠 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 14:59:49',NULL),(368,'202271023459182','{\"seq\": 70595, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1416671296, \"time\": 1657465499, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 29, \"sex\": \"male\", \"area\": \"晋城\", \"card\": \"深圳_小白\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 838585643, \"nickname\": \":嬡嘸珻☆悢嘸凊\"}, \"message\": [{\"text\": \"有偿的,不会让白帮忙\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 838585643, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdTH7zSsAARPDVHCwQGLK6psB\", \"raw_message\": \"有偿的,不会让白帮忙\", \"message_type\": \"group\"}','有偿',1,'2022-07-10 15:04:59',NULL),(369,'202271023752131','{\"seq\": 381374, \"atme\": false, \"font\": \"宋体\", \"rand\": 1622643712, \"time\": 1657465672, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2587439923, \"text\": \"@Bagel\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2282351722-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdG+YLeUAGLK60gB\", \"raw_message\": \"@Bagel 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 15:07:52',NULL),(370,'20227102381142','{\"seq\": 381375, \"atme\": false, \"font\": \"宋体\", \"rand\": 1290214749, \"time\": 1657465681, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1447936542, \"text\": \"@今天\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2509490254-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdG/TOcdXWLK61EB\", \"raw_message\": \"@今天 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-10 15:08:01',NULL),(371,'2022710232428155','{\"seq\": 60268, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 434155103, \"time\": 1657466668, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 234958906, \"nickname\": \"中云AI智能云防护小可\"}, \"message\": [{\"text\": \"专业解决服务器被攻击问题,先解决后付费!需要的联系\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 234958906, \"group_id\": 955416469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小程序app开发接单群\", \"message_id\": \"OPJ/lQ4BMDoAAOtsGeCuX2LK7ywB\", \"raw_message\": \"专业解决服务器被攻击问题,先解决后付费!需要的联系\", \"message_type\": \"group\"}','付费',1,'2022-07-10 15:24:28',NULL),(372,'202271174537177','{\"seq\": 4542, \"atme\": false, \"font\": \"宋体\", \"rand\": 1542547514, \"time\": 1657496737, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"\", \"card\": \"前端接单\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 824360131, \"nickname\": \"要娶就娶JMY™\"}, \"message\": [{\"text\": \"webpak版本问题导致项目无法启动,有偿,急活,能接私我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 824360131, \"group_id\": 124041790, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React外包交流群\", \"message_id\": \"B2S6PjEivMMAABG+W/FoOmLLZKEB\", \"raw_message\": \"webpak版本问题导致项目无法启动,有偿,急活,能接私我\", \"message_type\": \"group\"}','有偿',1,'2022-07-10 23:45:37',NULL),(373,'202271192753172','{\"seq\": 13284, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 364742149, \"time\": 1657502873, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 32, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 599396621, \"nickname\": \"晴空万里\"}, \"message\": [{\"text\": \"各行业软件 app 小程序开发 网站开发 需要联系我,加微:MPKJ410\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 599396621, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VCO6EQ0AADPkFb2GBWLLfJkB\", \"raw_message\": \"各行业软件 app 小程序开发 网站开发 需要联系我,加微:MPKJ410\", \"message_type\": \"group\"}','联系我',1,'2022-07-11 01:27:53',NULL),(374,'202271193240168','{\"seq\": 2159, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2642065891, \"time\": 1657503160, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2472534165, \"nickname\": \"小雨滴\"}, \"message\": [{\"text\": \"高考模拟志愿填报系统有需要的可联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2472534165, \"group_id\": 774843607, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"网站/APP外包交流群\", \"message_id\": \"Li8s15Nf4JUAAAhvnXq542LLfbgB\", \"raw_message\": \"高考模拟志愿填报系统有需要的可联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-11 01:32:40',NULL),(375,'202271110259114','{\"seq\": 381944, \"atme\": false, \"font\": \"宋体\", \"rand\": 1605258723, \"time\": 1657504978, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"\", \"card\": \"vue \", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2841989426, \"nickname\": \"h\"}, \"source\": {\"seq\": 381903, \"rand\": 645112557, \"time\": 1657504857, \"message\": \"程序就是数据结构 + 算法\", \"user_id\": 1102517143}, \"message\": [{\"qq\": 1102517143, \"text\": \"@李嘉图\", \"type\": \"at\"}, {\"text\": \" 嗯嗯,越来越感觉编程语言是工具,解决问题的工具,它们有好多相似之处感觉\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2841989426, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66llUTIABdP4X65N42LLhNIB\", \"raw_message\": \"@李嘉图 嗯嗯,越来越感觉编程语言是工具,解决问题的工具,它们有好多相似之处感觉\", \"message_type\": \"group\"}','解决问题',1,'2022-07-11 02:02:59',NULL),(376,'20227111068152','{\"seq\": 48983, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2212702998, \"time\": 1657505168, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3266436617, \"nickname\": \"直视\"}, \"message\": [{\"text\": \"有偿?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3266436617, \"group_id\": 164526367, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue3交流群\", \"message_id\": \"Cc55H8Kx3gkAAL9Xg+MrFmLLhZAB\", \"raw_message\": \"有偿?\", \"message_type\": \"group\"}','有偿',1,'2022-07-11 02:06:08',NULL),(377,'202271110910153','{\"seq\": 70680, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1585949271, \"time\": 1657505350, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 29, \"sex\": \"male\", \"area\": \"晋城\", \"card\": \"深圳_小白\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 838585643, \"nickname\": \":嬡嘸珻☆悢嘸凊\"}, \"message\": [{\"text\": \"哪位大佬帮忙看一下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 838585643, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdTH7zSsAARQYXoeqV2LLhkYB\", \"raw_message\": \"哪位大佬帮忙看一下\", \"message_type\": \"group\"}','帮忙',1,'2022-07-11 02:09:10',NULL),(378,'2022711101444114','{\"seq\": 73085, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3601017659, \"time\": 1657505684, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"澳门\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2321842380, \"nickname\": \"九转肥肠\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/2321842380/671059040-2835615499-E33418C96D0EFE36607DB31FE6E6C965/0?term=2\", \"file\": \"e33418c96d0efe36607db31fe6e6c9659373-1086-496.png\", \"type\": \"image\", \"asface\": false}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2321842380/671059040-3079233436-200128A1D3EF2A0D80AFDCC60BF149DF/0?term=2\", \"file\": \"200128a1d3ef2a0d80afdcc60bf149df87302-1017-598.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r求助 上传头像为什么没反应啊 方法好像没走进去\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2321842380, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE前端划水群\", \"message_id\": \"J/+MYIpkgMwAAR191qMrO2LLh5QB\", \"raw_message\": \"[图片][图片]\\r求助 上传头像为什么没反应啊 方法好像没走进去\", \"message_type\": \"group\"}','求助',1,'2022-07-11 02:14:44',NULL),(379,'2022711102133102','{\"seq\": 70683, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3607484346, \"time\": 1657506093, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"三亚\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3184206849, \"nickname\": \"Joey\"}, \"message\": [{\"text\": \"哪位大牛方便,想实现一个可以编辑侧边栏的页面,路由和页面都写好了但是程序不执行可以帮忙解决一下吧\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3184206849, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdb3LJAEAARQb1wXXumLLiS0B\", \"raw_message\": \"哪位大牛方便,想实现一个可以编辑侧边栏的页面,路由和页面都写好了但是程序不执行可以帮忙解决一下吧\", \"message_type\": \"group\"}','帮忙',1,'2022-07-11 02:21:33',NULL),(380,'2022711103144187','{\"seq\": 382294, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2229315275, \"time\": 1657506704, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"轻秋(每日5问,有问题@我,插件问题不管)\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1099177965, \"nickname\": \"长安‘’\"}, \"message\": [{\"text\": \"如需帮助,请@我 今日五问 还剩5 (仅限前端问题)\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1099177965, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h60GEH+0ABdVWhOCmy2LLi5AB\", \"raw_message\": \"如需帮助,请@我 今日五问 还剩5 (仅限前端问题)\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 02:31:44',NULL),(381,'202271110342140','{\"seq\": 382326, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3281346912, \"time\": 1657506842, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"轻秋(每日5问,有问题@我,插件问题不管)\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1099177965, \"nickname\": \"长安‘’\"}, \"message\": [{\"text\": \"如需帮助,请@我 今日五问 还剩5 (仅限前端问题)\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1099177965, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h60GEH+0ABdV2w5VhYGLLjBoB\", \"raw_message\": \"如需帮助,请@我 今日五问 还剩5 (仅限前端问题)\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 02:34:02',NULL),(382,'2022711103549153','{\"seq\": 950043, \"atme\": false, \"font\": \"宋体\", \"rand\": 649300127, \"time\": 1657506949, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3381775672, \"nickname\": \"喵喵\"}, \"message\": [{\"text\": \"可以跟我说(要叫我或者at我,我才知道哦):\\r\\n提醒帮助\\r\\n上海天气 上海明天天气\\r\\n笑话\\r\\n摸鱼 摸鱼帮助 节假日\\r\\n图 风景图 动漫图 美女图 妹子图\\r\\n随机点数\\r\\n美音hello 英音hello\\r\\n\\r\\n另外,我可以执行Racket代码哦\\r\\n 有以下几种发送给我的方式:\\r\\n a. 如果代码是以一个完整的表达式(如(+ 1 2))开始,可以直接发送。\\r\\n b. at我,然后跟着代码。\\r\\n c. 直接发送 #rkt <代码> 这个输出会带源代码的消息的回复\\r\\n d. 直接发送 !rkt <代码> 这个输出不带源代码的消息的回复\\r\\n 可以输出图像,绘图函数详见Racket的2htdp/image、racket/draw等模块的文档\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3381775672, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB8mRzTgADn8bJrOIn2LLjIUB\", \"raw_message\": \"可以跟我说(要叫我或者at我,我才知道哦):\\r\\n提醒帮助\\r\\n上海天气 上海明天天气\\r\\n笑话\\r\\n摸鱼 摸鱼帮助 节假日\\r\\n图 风景图 动漫图 美女图 妹子图\\r\\n随机点数\\r\\n美音hello 英音hello\\r\\n\\r\\n另外,我可以执行Racket代码哦\\r\\n 有以下几种发送给我的方式:\\r\\n a. 如果代码是以一个完整的表达式(如(+ 1 2))开始,可以直接发送。\\r\\n b. at我,然后跟着代码。\\r\\n c. 直接发送 #rkt <代码> 这个输出会带源代码的消息的回复\\r\\n d. 直接发送 !rkt <代码> 这个输出不带源代码的消息的回复\\r\\n 可以输出图像,绘图函数详见Racket的2htdp/image、racket/draw等模块的文档\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 02:35:49',NULL),(383,'2022711103617167','{\"seq\": 382343, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1688649349, \"time\": 1657506977, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"轻秋(每日5问,有问题@我,插件问题不管)\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1099177965, \"nickname\": \"长安‘’\"}, \"message\": [{\"text\": \"如需帮助,请@我 今日五问 还剩5 (仅限前端问题) \\r还有 要问问题请问实际一点的,比如操作中遇到,别问那些随便能百度到或者很蠢的问题,第二次出现,拉黑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1099177965, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h60GEH+0ABdWHZKa+hWLLjKEB\", \"raw_message\": \"如需帮助,请@我 今日五问 还剩5 (仅限前端问题) \\r还有 要问问题请问实际一点的,比如操作中遇到,别问那些随便能百度到或者很蠢的问题,第二次出现,拉黑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 02:36:17',NULL),(384,'2022711104246103','{\"seq\": 1334680, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 414038293, \"time\": 1657507366, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[交流]下雨了\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 646592353, \"nickname\": \".....\"}, \"message\": [{\"text\": \"没大佬解决问题么\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 646592353, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphciaKN2EAFF2YGK25FWLLjiYB\", \"raw_message\": \"没大佬解决问题么\", \"message_type\": \"group\"}','解决问题',1,'2022-07-11 02:42:46',NULL),(385,'2022711104348132','{\"seq\": 70687, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2118109501, \"time\": 1657507428, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"female\", \"area\": \"\", \"card\": \"A-糖豆 服务器出租\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 97405367, \"nickname\": \"小糖豆\"}, \"message\": [{\"text\": \"海内外优质独立服务器,线路稳定,大宽带,高防御,需要的老板联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 97405367, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdQXOSbcAARQffj/JPWLLjmQB\", \"raw_message\": \"海内外优质独立服务器,线路稳定,大宽带,高防御,需要的老板联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-11 02:43:48',NULL),(386,'2022711105716175','{\"seq\": 146135, \"atme\": false, \"font\": \"宋体\", \"rand\": 2022705270, \"time\": 1657508236, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1351699194, \"nickname\": \"Zzh。\"}, \"message\": [{\"text\": \"可有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1351699194, \"group_id\": 145454260, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/Webpack/NodeJs\", \"message_id\": \"CKt0tFCRSvoAAjrXeJAIdmLLkYwB\", \"raw_message\": \"可有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-11 02:57:16',NULL),(387,'202271111344172','{\"seq\": 1334859, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2858302870, \"time\": 1657510444, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 18, \"sex\": \"male\", \"area\": \"阿拉伯联合酋长国\", \"card\": \"SKY[交流]坤坤\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3487694409, \"nickname\": \"坤\"}, \"message\": [{\"text\": \"可有大神帮忙解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3487694409, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcs/h/kkAFF5Lql49lmLLmiwB\", \"raw_message\": \"可有大神帮忙解决\", \"message_type\": \"group\"}','帮忙',1,'2022-07-11 03:34:04',NULL),(388,'202271111388172','{\"seq\": 10711, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1333049838, \"time\": 1657510688, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"北京\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1451592918, \"nickname\": \"晨ノ曦\"}, \"message\": [{\"text\": \"付费指导一下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1451592918, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaFaFjNYAACnXT3S57mLLmyAB\", \"raw_message\": \"付费指导一下\", \"message_type\": \"group\"}','付费',1,'2022-07-11 03:38:08',NULL),(389,'2022711114050122','{\"seq\": 382720, \"atme\": false, \"font\": \"宋体\", \"rand\": 1364181571, \"time\": 1657510850, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1052647690, \"text\": \"@90Pa1aceVa3\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2748398038-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdcAUU/CQ2LLm8IB\", \"raw_message\": \"@90Pa1aceVa3 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 03:40:50',NULL),(390,'2022711114051149','{\"seq\": 382722, \"atme\": false, \"font\": \"宋体\", \"rand\": 296882708, \"time\": 1657510851, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 529703274, \"text\": \"@大耳朵图图\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2346421542-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdcCEbISFGLLm8MB\", \"raw_message\": \"@大耳朵图图 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 03:40:51',NULL),(391,'2022711114053133','{\"seq\": 382723, \"atme\": false, \"font\": \"宋体\", \"rand\": 1208679939, \"time\": 1657510853, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2429899353, \"text\": \"@🤗\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2544951574-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdcDSAr+A2LLm8UB\", \"raw_message\": \"@🤗 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 03:40:53',NULL),(392,'202271111419173','{\"seq\": 382725, \"atme\": false, \"font\": \"宋体\", \"rand\": 548987464, \"time\": 1657510869, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2622232795, \"text\": \"@玛卡巴卡\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2381378975-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdcFILjiSGLLm9UB\", \"raw_message\": \"@玛卡巴卡 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 03:41:09',NULL),(393,'2022711114112109','{\"seq\": 382726, \"atme\": false, \"font\": \"宋体\", \"rand\": 1541255348, \"time\": 1657510872, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 751123480, \"text\": \"@Excalibur\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3076096767-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdcGW92wtGLLm9gB\", \"raw_message\": \"@Excalibur 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 03:41:12',NULL),(394,'2022711114116118','{\"seq\": 382727, \"atme\": false, \"font\": \"宋体\", \"rand\": 326773666, \"time\": 1657510876, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1243789967, \"text\": \"@大眼怪\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2718991753-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdcHE3oromLLm9wB\", \"raw_message\": \"@大眼怪 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 03:41:16',NULL),(395,'2022711114117149','{\"seq\": 382728, \"atme\": false, \"font\": \"宋体\", \"rand\": 250241300, \"time\": 1657510877, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 646592353, \"text\": \"@.....\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2610262530-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdcIDuphFGLLm90B\", \"raw_message\": \"@..... 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 03:41:17',NULL),(396,'2022711114120141','{\"seq\": 382729, \"atme\": false, \"font\": \"宋体\", \"rand\": 1493685768, \"time\": 1657510880, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2811833474, \"text\": \"@⁡ ㅤ\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2789878345-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdcJWQfWCGLLm+AB\", \"raw_message\": \"@⁡ ㅤ 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 03:41:20',NULL),(397,'202271112815153','{\"seq\": 950101, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2785367867, \"time\": 1657512495, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"阿尔巴尼亚\", \"card\": \"长沙 安迪\", \"role\": \"member\", \"level\": 2, \"title\": \"\", \"user_id\": 1994516231, \"nickname\": \"安迪\"}, \"message\": [{\"text\": \"有没有大佬使用xlsx和slxs-style有偿求帮助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1994516231, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB3bh5wcADn9VpgVXO2LLoi8B\", \"raw_message\": \"有没有大佬使用xlsx和slxs-style有偿求帮助\", \"message_type\": \"group\"}','有偿',1,'2022-07-11 04:08:15',NULL),(398,'202271112173184','{\"seq\": 33559, \"atme\": false, \"font\": \"宋体\", \"rand\": 260061078, \"time\": 1657513023, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"秋招提前批招人,23届本科私聊我\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 719839253, \"nickname\": \"00 RAISER\"}, \"message\": [{\"text\": \"当然内推帮助有限,主要还得看你自己实力\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 719839253, \"group_id\": 662934214, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"css/vue/node/vuetify cain前\", \"message_id\": \"J4OSxirn4BUAAIMXD4A3lmLLpD8B\", \"raw_message\": \"当然内推帮助有限,主要还得看你自己实力\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 04:17:03',NULL),(399,'2022711131954149','{\"seq\": 1334937, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1041487963, \"time\": 1657516794, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 17, \"sex\": \"female\", \"area\": \"襄阳\", \"card\": \"SKY[咸鱼]人生\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 595436346, \"nickname\": \"咸鱼人生\"}, \"message\": [{\"text\": \"求助一下vue的api网站在哪里\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 595436346, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphciN9ozoAFF6ZPhPYW2LLsvoB\", \"raw_message\": \"求助一下vue的api网站在哪里\", \"message_type\": \"group\"}','求助',1,'2022-07-11 05:19:54',NULL),(400,'2022711133224113','{\"seq\": 382824, \"atme\": false, \"font\": \"宋体\", \"rand\": 1920614615, \"time\": 1657517544, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1026139705, \"text\": \"@淵\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2699828508-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABddocnpA12LLtegB\", \"raw_message\": \"@淵 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 05:32:24',NULL),(401,'2022711133226170','{\"seq\": 382825, \"atme\": false, \"font\": \"宋体\", \"rand\": 1775827093, \"time\": 1657517546, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 3197871458, \"text\": \"@3197871458\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2860023360-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABddpadj4lWLLteoB\", \"raw_message\": \"@3197871458 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 05:32:26',NULL),(402,'2022711133223164','{\"seq\": 382823, \"atme\": false, \"font\": \"宋体\", \"rand\": 67168426, \"time\": 1657517543, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 545684289, \"text\": \"@这个杀手有点冷\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3117442777-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABddnBADoqmLLtecB\", \"raw_message\": \"@这个杀手有点冷 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 05:32:23',NULL),(403,'2022711133522141','{\"seq\": 2882, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1971849597, \"time\": 1657517722, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 33, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 406879210, \"nickname\": \"翁爷\"}, \"message\": [{\"text\": \"nestjs最佳实践教程第五集https://www.bilibili.com/video/BV1j34y1H7MA?share_source=copy_web\\n\\n另本人教授Ts,React全家桶,Tailwind,Nestjs,Electron,Nextjs,Taro,RN等TS全栈开发技能,并解决你工作和学习中遇到的问题,有意向联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 406879210, \"group_id\": 695981885, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue Antd Admin - 4\", \"message_id\": \"KXvXPRhAe+oAAAtCdYgJfWLLtpoB\", \"raw_message\": \"nestjs最佳实践教程第五集https://www.bilibili.com/video/BV1j34y1H7MA?share_source=copy_web\\n\\n另本人教授Ts,React全家桶,Tailwind,Nestjs,Electron,Nextjs,Taro,RN等TS全栈开发技能,并解决你工作和学习中遇到的问题,有意向联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-11 05:35:22',NULL),(404,'2022711134811120','{\"seq\": 60296, \"atme\": false, \"font\": \"宋体\", \"rand\": 634683500, \"time\": 1657518491, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 4, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1078141371, \"nickname\": \"a^域名批发\"}, \"message\": [{\"text\": \" 需要备案域名 联系我 阿里云备案cn下货100多个 价格实惠 联系飞机 lsybwc666 \", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1078141371, \"group_id\": 955416469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小程序app开发接单群\", \"message_id\": \"OPJ/lUBDIbsAAOuIJdSAbGLLuZsB\", \"raw_message\": \" 需要备案域名 联系我 阿里云备案cn下货100多个 价格实惠 联系飞机 lsybwc666 \", \"message_type\": \"group\"}','联系我',1,'2022-07-11 05:48:11',NULL),(405,'2022711135139144','{\"seq\": 950277, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 871872739, \"time\": 1657518699, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"阿尔巴尼亚\", \"card\": \"长沙 安迪\", \"role\": \"member\", \"level\": 2, \"title\": \"\", \"user_id\": 1994516231, \"nickname\": \"安迪\"}, \"message\": [{\"text\": \"可以远程一下吗有偿真的搞了好久了一直没有解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1994516231, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB3bh5wcADoAFM/e442LLumsB\", \"raw_message\": \"可以远程一下吗有偿真的搞了好久了一直没有解决\", \"message_type\": \"group\"}','有偿',1,'2022-07-11 05:51:39',NULL),(406,'202271114413130','{\"seq\": 60298, \"atme\": false, \"font\": \"宋体\", \"rand\": 243218594, \"time\": 1657519453, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 4, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1078141371, \"nickname\": \"a^域名批发\"}, \"message\": [{\"text\": \" 需要备案域名 联系我 阿里云备案cn下货100多个 价格实惠 联系飞机 lsybwc666 \", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1078141371, \"group_id\": 955416469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小程序app开发接单群\", \"message_id\": \"OPJ/lUBDIbsAAOuKDn84omLLvV0B\", \"raw_message\": \" 需要备案域名 联系我 阿里云备案cn下货100多个 价格实惠 联系飞机 lsybwc666 \", \"message_type\": \"group\"}','联系我',1,'2022-07-11 06:04:13',NULL),(407,'202271114853123','{\"seq\": 515996, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2027901963, \"time\": 1657519733, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"香港\", \"card\": \"北风\", \"role\": \"member\", \"level\": 5, \"title\": \"\", \"user_id\": 3114118545, \"nickname\": \"北风\"}, \"message\": [{\"text\": \"花钱买不就行啦/斜眼笑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3114118545, \"group_id\": 538246944, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JS、Vue、Element-UI技术栈\", \"message_id\": \"IBT/ILmdrZEAB9+ceN9UC2LLvnUB\", \"raw_message\": \"花钱买不就行啦/斜眼笑\", \"message_type\": \"group\"}','花钱',1,'2022-07-11 06:08:53',NULL),(408,'2022711142437163','{\"seq\": 162060, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1147173102, \"time\": 1657520677, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"female\", \"area\": \"无锡\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1214880285, \"nickname\": \"厦门软件开发\"}, \"message\": [{\"text\": \"Python,java,c#简易程序, 小型网站定制开发 后端定制, php, Springboot API接口开发,有需求的可联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1214880285, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O40hpmh0AAnkMRGB47mLLwiUB\", \"raw_message\": \"Python,java,c#简易程序, 小型网站定制开发 后端定制, php, Springboot API接口开发,有需求的可联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-11 06:24:37',NULL),(409,'2022711142711107','{\"seq\": 60302, \"atme\": false, \"font\": \"宋体\", \"rand\": 892072209, \"time\": 1657520831, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 4, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1078141371, \"nickname\": \"a^域名批发\"}, \"message\": [{\"text\": \" 需要备案域名 联系我 阿里云备案cn下货100多个 价格实惠 联系飞机 lsybwc666 \", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1078141371, \"group_id\": 955416469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小程序app开发接单群\", \"message_id\": \"OPJ/lUBDIbsAAOuONSvxEWLLwr8B\", \"raw_message\": \" 需要备案域名 联系我 阿里云备案cn下货100多个 价格实惠 联系飞机 lsybwc666 \", \"message_type\": \"group\"}','联系我',1,'2022-07-11 06:27:11',NULL),(410,'2022711143740178','{\"seq\": 1335222, \"atme\": false, \"font\": \"宋体\", \"rand\": 438325628, \"time\": 1657521460, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[交流]洋洋\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2990125749, \"nickname\": \"洋33 🍀🔥🏚⛵💜🍦\"}, \"message\": [{\"text\": \"免费帮忙写作业\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2990125749, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcrI5srUAFF+2GiBRfGLLxTQB\", \"raw_message\": \"免费帮忙写作业\", \"message_type\": \"group\"}','帮忙',1,'2022-07-11 06:37:40',NULL),(411,'2022711144122175','{\"seq\": 173657, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4175243259, \"time\": 1657521682, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1459847161, \"nickname\": \"公仪斐\"}, \"message\": [{\"text\": \"有偿解决一个问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1459847161, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIVcDf/kAAqZZ+N0n+2LLxhIB\", \"raw_message\": \"有偿解决一个问题\", \"message_type\": \"group\"}','有偿',1,'2022-07-11 06:41:22',NULL),(412,'2022711144715133','{\"seq\": 383051, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3793303020, \"time\": 1657522035, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2433771445, \"nickname\": \"Why\"}, \"message\": [{\"text\": \"我有他们的课程,能不能帮忙看下啊\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2433771445, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h65EQZ7UABdhL4hk17GLLx3MB\", \"raw_message\": \"我有他们的课程,能不能帮忙看下啊\", \"message_type\": \"group\"}','帮忙',1,'2022-07-11 06:47:15',NULL),(413,'2022711144812118','{\"seq\": 383064, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1900425022, \"time\": 1657522092, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"轻秋【收一个小徒弟】 (每日五问@我)\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1099177965, \"nickname\": \"长安‘’\"}, \"message\": [{\"text\": \"今日还剩四问,如需帮助请@我喔\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1099177965, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h60GEH+0ABdhYcUYvPmLLx6wB\", \"raw_message\": \"今日还剩四问,如需帮助请@我喔\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 06:48:12',NULL),(414,'202271114518148','{\"seq\": 383095, \"atme\": false, \"font\": \"宋体\", \"rand\": 14330333, \"time\": 1657522268, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1515750824, \"text\": \"@Lil gold\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2655453853-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdh3ANqp3WLLyFwB\", \"raw_message\": \"@Lil gold 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 06:51:08',NULL),(415,'2022711145110164','{\"seq\": 383096, \"atme\": false, \"font\": \"宋体\", \"rand\": 681977335, \"time\": 1657522270, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2919829983, \"text\": \"@光夙\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2323112294-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdh4KKYl92LLyF4B\", \"raw_message\": \"@光夙 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 06:51:10',NULL),(416,'2022711145111133','{\"seq\": 383097, \"atme\": false, \"font\": \"宋体\", \"rand\": 240312296, \"time\": 1657522271, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 249598863, \"text\": \"@一亩企鹅\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2182845279-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdh5DlLf6GLLyF8B\", \"raw_message\": \"@一亩企鹅 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 06:51:11',NULL),(417,'202271115936153','{\"seq\": 27994, \"atme\": false, \"font\": \"宋体\", \"rand\": 1231459485, \"time\": 1657523376, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"上海-前端-谭待\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1750726876, \"nickname\": \"上海-前端-谭待\"}, \"message\": [{\"text\": \"主应用的.env文件怎么给子应用的覆盖掉,有没有大佬帮忙解答一下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1750726876, \"group_id\": 650471018, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"微前端—qiankun,Web讨\", \"message_id\": \"JsVmamhZ+NwAAG1aSWaUnWLLzLAB\", \"raw_message\": \"主应用的.env文件怎么给子应用的覆盖掉,有没有大佬帮忙解答一下\", \"message_type\": \"group\"}','帮忙',1,'2022-07-11 07:09:36',NULL),(418,'2022711153312157','{\"seq\": 162066, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4144638876, \"time\": 1657524792, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"female\", \"area\": \"无锡\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1214880285, \"nickname\": \"厦门软件开发\"}, \"message\": [{\"text\": \"Python,java,c#简易程序, 小型网站定制开发 后端定制, php, Springboot API接口开发,有需求的可联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1214880285, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O40hpmh0AAnkS9wornGLL0jgB\", \"raw_message\": \"Python,java,c#简易程序, 小型网站定制开发 后端定制, php, Springboot API接口开发,有需求的可联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-11 07:33:12',NULL),(419,'2022711153442125','{\"seq\": 2389, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1175058835, \"time\": 1657524882, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2451961300, \"nickname\": \"14Rvui\"}, \"message\": [{\"text\": \"求助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2451961300, \"group_id\": 956712240, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vben、antd、vue3、ts开发�\", \"message_id\": \"OQZFMJIl9dQAAAlVRgn5k2LL0pIB\", \"raw_message\": \"求助\", \"message_type\": \"group\"}','求助',1,'2022-07-11 07:34:42',NULL),(420,'202271116447177','{\"seq\": 1335685, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 487232778, \"time\": 1657526687, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 30, \"sex\": \"male\", \"area\": \"来宾\", \"card\": \"SKY[交流]棍子\", \"role\": \"admin\", \"level\": 6, \"title\": \"\", \"user_id\": 617635561, \"nickname\": \"-Z(Jun)-\"}, \"message\": [{\"text\": \"当然也可以花钱\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 617635561, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphciTQXukAFGGFHQqVCmLL2Z8B\", \"raw_message\": \"当然也可以花钱\", \"message_type\": \"group\"}','花钱',1,'2022-07-11 08:04:47',NULL),(421,'202271116517165','{\"seq\": 383583, \"atme\": false, \"font\": \"宋体\", \"rand\": 88061386, \"time\": 1657526717, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1833397822, \"text\": \"@ㅤ乡村错题集ㅤ\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2966757343-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdpfBT+1ymLL2b0B\", \"raw_message\": \"@ㅤ乡村错题集ㅤ 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 08:05:17',NULL),(422,'202271116519126','{\"seq\": 383585, \"atme\": false, \"font\": \"宋体\", \"rand\": 173623213, \"time\": 1657526719, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 459887784, \"text\": \"@Alan\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2290063435-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdphCllHrWLL2b8B\", \"raw_message\": \"@Alan 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 08:05:19',NULL),(423,'202271116519131','{\"seq\": 383586, \"atme\": false, \"font\": \"宋体\", \"rand\": 1292921977, \"time\": 1657526719, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2655630457, \"text\": \"@Οo邡飛懜葙оΟ\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2286725212-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdpiTRBseWLL2b8B\", \"raw_message\": \"@Οo邡飛懜葙оΟ 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 08:05:19',NULL),(424,'202271116520123','{\"seq\": 383587, \"atme\": false, \"font\": \"宋体\", \"rand\": 1481957659, \"time\": 1657526720, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1035472388, \"text\": \"@陌上-小猪🐮\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2200188990-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdpjWFThG2LL2cAB\", \"raw_message\": \"@陌上-小猪🐮 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 08:05:20',NULL),(425,'202271116521174','{\"seq\": 383588, \"atme\": false, \"font\": \"宋体\", \"rand\": 1107899057, \"time\": 1657526721, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 197551792, \"text\": \"@混沌.exe\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2619000061-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdpkQgkysWLL2cEB\", \"raw_message\": \"@混沌.exe 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 08:05:21',NULL),(426,'202271116521167','{\"seq\": 383589, \"atme\": false, \"font\": \"宋体\", \"rand\": 923734645, \"time\": 1657526721, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 9617631, \"text\": \"@王争气\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2513255425-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdplNw8SdWLL2cEB\", \"raw_message\": \"@王争气 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 08:05:21',NULL),(427,'202271116645113','{\"seq\": 383607, \"atme\": false, \"font\": \"宋体\", \"rand\": 1047114081, \"time\": 1657526805, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"温州\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 305084925, \"nickname\": \"奈非天啊\"}, \"message\": [{\"text\": \"各位大佬好 我也想问一下前端问题 解决有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 305084925, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6xIvOf0ABdp3PmmxYWLL2hUB\", \"raw_message\": \"各位大佬好 我也想问一下前端问题 解决有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-11 08:06:45',NULL),(428,'202271116947154','{\"seq\": 13312, \"atme\": false, \"font\": \"宋体\", \"rand\": 830697859, \"time\": 1657526987, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2339510255, \"nickname\": \"Dream_Sanye\"}, \"message\": [{\"text\": \"出售带分销制度的商城系统\\n三级分销+平级奖+级差奖+业绩分红+独立佣金\\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\\n\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2339510255, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VItyF+8AADQAMYNxg2LL2ssB\", \"raw_message\": \"出售带分销制度的商城系统\\n三级分销+平级奖+级差奖+业绩分红+独立佣金\\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\\n\", \"message_type\": \"group\"}','联系我',1,'2022-07-11 08:09:47',NULL),(429,'2022711161733124','{\"seq\": 383737, \"atme\": false, \"font\": \"宋体\", \"rand\": 846908407, \"time\": 1657527453, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"温州\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 305084925, \"nickname\": \"奈非天啊\"}, \"message\": [{\"text\": \"有没有大佬帮帮忙 解决了发红包\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 305084925, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6xIvOf0ABdr5MnrL92LL3J0B\", \"raw_message\": \"有没有大佬帮帮忙 解决了发红包\", \"message_type\": \"group\"}','帮忙',1,'2022-07-11 08:17:33',NULL),(430,'2022711163530142','{\"seq\": 275090, \"atme\": false, \"font\": \"宋体\", \"rand\": 791846957, \"time\": 1657528530, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"深圳-0-yee\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 894425013, \"nickname\": \"你好,世界\"}, \"message\": [{\"text\": \"有大佬帮我写个mock的增删改功能吗 有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 894425013, \"group_id\": 692522608, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端Vue开发程序员贰\", \"message_id\": \"KUcOcDVP17UABDKSLzKgLWLL4NIB\", \"raw_message\": \"有大佬帮我写个mock的增删改功能吗 有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-11 08:35:30',NULL),(431,'2022711164149125','{\"seq\": 31540, \"atme\": false, \"font\": \"宋体\", \"rand\": 335494915, \"time\": 1657528909, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 894425013, \"nickname\": \"你好,世界\"}, \"message\": [{\"text\": \"有大佬帮我写个mock的增删改功能吗 有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 894425013, \"group_id\": 678225870, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue前端小白交流群\", \"message_id\": \"KGznzjVP17UAAHs0E/8/A2LL4k0B\", \"raw_message\": \"有大佬帮我写个mock的增删改功能吗 有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-11 08:41:49',NULL),(432,'202271116436105','{\"seq\": 383871, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 422685294, \"time\": 1657528986, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 29, \"sex\": \"male\", \"area\": \"北京\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 459887784, \"nickname\": \"Alan\"}, \"message\": [{\"qq\": 3125667110, \"text\": \"@客官\", \"type\": \"at\"}, {\"text\": \" 恩恩。价格不高。有闲余时间的联系我就好。\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 459887784, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6xtpVKgABdt/GTGqbmLL4poB\", \"raw_message\": \"@客官 恩恩。价格不高。有闲余时间的联系我就好。\", \"message_type\": \"group\"}','联系我',1,'2022-07-11 08:43:06',NULL),(433,'2022711164758125','{\"seq\": 4557, \"atme\": false, \"font\": \"宋体\", \"rand\": 760581655, \"time\": 1657529278, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 37, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2802182735, \"nickname\": \"单片机设计者\"}, \"message\": [{\"text\": \"\\n各位老板,嵌入式工程师私人接单:接各类stm32 51单片机arm嵌入式开发 抄写原理图 智能产品 娱乐产品 开发 有偿技术指导 小批量供货 需要的私聊\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2802182735, \"group_id\": 124041790, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React外包交流群\", \"message_id\": \"B2S6PqcF6k8AABHNLVWOF2LL474B\", \"raw_message\": \"\\n各位老板,嵌入式工程师私人接单:接各类stm32 51单片机arm嵌入式开发 抄写原理图 智能产品 娱乐产品 开发 有偿技术指导 小批量供货 需要的私聊\", \"message_type\": \"group\"}','有偿',1,'2022-07-11 08:47:58',NULL),(434,'2022711165156120','{\"seq\": 9939, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1106877967, \"time\": 1657529516, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1634755797, \"nickname\": \"  \"}, \"message\": [{\"text\": \"大佬 可以提供点思路 有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1634755797, \"group_id\": 707180706, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"FastAdmin-中级以上\", \"message_id\": \"Kia4omFwZNUAACbTQfmeD2LL5KwB\", \"raw_message\": \"大佬 可以提供点思路 有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-11 08:51:56',NULL),(435,'202271117121157','{\"seq\": 13320, \"atme\": false, \"font\": \"宋体\", \"rand\": 1923098832, \"time\": 1657530081, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2339510255, \"nickname\": \"Dream_Sanye\"}, \"message\": [{\"text\": \"出售带分销制度的商城系统\\n三级分销+平级奖+级差奖+业绩分红+独立佣金\\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2339510255, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VItyF+8AADQIcqAo0GLL5uEB\", \"raw_message\": \"出售带分销制度的商城系统\\n三级分销+平级奖+级差奖+业绩分红+独立佣金\\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-11 09:01:21',NULL),(436,'202271117423176','{\"seq\": 45338, \"atme\": false, \"font\": \"宋体\", \"rand\": 2127758799, \"time\": 1657530263, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"冰岛\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 342240222, \"nickname\": \"牙牙莓\"}, \"message\": [{\"text\": \"你反问他知道这玩应对我拧螺丝有帮助吗/汪汪\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 342240222, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBRRmK94AALEaftMFz2LL55cB\", \"raw_message\": \"你反问他知道这玩应对我拧螺丝有帮助吗/汪汪\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 09:04:23',NULL),(437,'2022711171241182','{\"seq\": 13321, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 246315390, \"time\": 1657530760, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 32, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 599396621, \"nickname\": \"晴空万里\"}, \"message\": [{\"text\": \"商城开发 市面上涉及到的新零售商城、单用户商城、多用户商城、分销直销系统、抢购商城、拼团商城、竞价商城等 需要联系我,加微:MPKJ410\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 599396621, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VCO6EQ0AADQJDq55fmLL6YgB\", \"raw_message\": \"商城开发 市面上涉及到的新零售商城、单用户商城、多用户商城、分销直销系统、抢购商城、拼团商城、竞价商城等 需要联系我,加微:MPKJ410\", \"message_type\": \"group\"}','联系我',1,'2022-07-11 09:12:41',NULL),(438,'2022711171252119','{\"seq\": 70739, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4149765552, \"time\": 1657530772, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"绍杰\"}, \"message\": [{\"text\": \"遇到bug或者功能解决不了,给点好处,可以帮忙解决。\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1336322173, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdU+mqH0AARRT91hlsGLL6ZQB\", \"raw_message\": \"遇到bug或者功能解决不了,给点好处,可以帮忙解决。\", \"message_type\": \"group\"}','帮忙',1,'2022-07-11 09:12:52',NULL),(439,'2022711171317133','{\"seq\": 2593, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 101703039, \"time\": 1657530797, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 32, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 599396621, \"nickname\": \"晴空万里\"}, \"message\": [{\"text\": \"商城开发 市面上涉及到的新零售商城、单用户商城、多用户商城、分销直销系统、抢购商城、拼团商城、竞价商城等 需要联系我,加微:MPKJ410\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 599396621, \"group_id\": 621421868, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"C/C++/C#技术交流群\", \"message_id\": \"JQolLCO6EQ0AAAohBg/df2LL6a0B\", \"raw_message\": \"商城开发 市面上涉及到的新零售商城、单用户商城、多用户商城、分销直销系统、抢购商城、拼团商城、竞价商城等 需要联系我,加微:MPKJ410\", \"message_type\": \"group\"}','联系我',1,'2022-07-11 09:13:17',NULL),(440,'202271117202128','{\"seq\": 73656, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 420367090, \"time\": 1657531202, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"female\", \"area\": \"上海\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2694845269, \"nickname\": \"一头小毛驴\"}, \"message\": [{\"text\": \"有没有人教我一下前端刚入职,啥都不会 有偿教学\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2694845269, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE前端划水群\", \"message_id\": \"J/+MYKCgE1UAAR+4GQ5K8mLL60IB\", \"raw_message\": \"有没有人教我一下前端刚入职,啥都不会 有偿教学\", \"message_type\": \"group\"}','有偿',1,'2022-07-11 09:20:02',NULL),(441,'2022711172536149','{\"seq\": 73685, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 249797593, \"time\": 1657531536, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 12, \"sex\": \"male\", \"area\": \"江西\", \"card\": \"大雕萌妹\", \"role\": \"admin\", \"level\": 1, \"title\": \"\", \"user_id\": 2723223664, \"nickname\": \"💥 ⃢👁ܫ👁⃢ 💥\"}, \"message\": [{\"text\": \"下周又是不花钱的一周\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2723223664, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE前端划水群\", \"message_id\": \"J/+MYKJRGHAAAR/VDuOb2WLL7JAB\", \"raw_message\": \"下周又是不花钱的一周\", \"message_type\": \"group\"}','花钱',1,'2022-07-11 09:25:36',NULL),(442,'2022711172639184','{\"seq\": 73691, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1049135340, \"time\": 1657531599, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 12, \"sex\": \"male\", \"area\": \"江西\", \"card\": \"大雕萌妹\", \"role\": \"admin\", \"level\": 1, \"title\": \"\", \"user_id\": 2723223664, \"nickname\": \"💥 ⃢👁ܫ👁⃢ 💥\"}, \"message\": [{\"text\": \"出差不用花钱\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2723223664, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE前端划水群\", \"message_id\": \"J/+MYKJRGHAAAR/bPoiI7GLL7M8B\", \"raw_message\": \"出差不用花钱\", \"message_type\": \"group\"}','花钱',1,'2022-07-11 09:26:39',NULL),(443,'2022711172832155','{\"seq\": 96352, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3153099418, \"time\": 1657531712, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 19, \"sex\": \"male\", \"area\": \"泰安\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 984174472, \"nickname\": \"风紧不扯呼\"}, \"message\": [{\"text\": \"贼奇怪,群主出来解决问题了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 984174472, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp9zqpT4gAAXhgu/B6mmLL7UAB\", \"raw_message\": \"贼奇怪,群主出来解决问题了\", \"message_type\": \"group\"}','解决问题',1,'2022-07-11 09:28:32',NULL),(444,'202271117312109','{\"seq\": 384235, \"atme\": false, \"font\": \"宋体\", \"rand\": 2099258772, \"time\": 1657531862, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 781763060, \"text\": \"@sss\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2291468269-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdzrfSAllGLL7dYB\", \"raw_message\": \"@sss 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 09:31:02',NULL),(445,'202271117313151','{\"seq\": 384236, \"atme\": false, \"font\": \"宋体\", \"rand\": 1794174108, \"time\": 1657531863, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 806114714, \"text\": \"@如获新生。\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2148047267-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdzsavDsnGLL7dcB\", \"raw_message\": \"@如获新生。 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 09:31:03',NULL),(446,'202271117318176','{\"seq\": 384237, \"atme\": false, \"font\": \"宋体\", \"rand\": 1622476575, \"time\": 1657531868, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2694845269, \"text\": \"@一头小毛驴\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2516254450-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdztYLUHH2LL7dwB\", \"raw_message\": \"@一头小毛驴 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 09:31:08',NULL),(447,'2022711173110134','{\"seq\": 384240, \"atme\": false, \"font\": \"宋体\", \"rand\": 282160039, \"time\": 1657531870, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 3273621438, \"text\": \"@自由如风\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2167901016-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdzwENFrp2LL7d4B\", \"raw_message\": \"@自由如风 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 09:31:10',NULL),(448,'2022711173111150','{\"seq\": 384241, \"atme\": false, \"font\": \"宋体\", \"rand\": 945167047, \"time\": 1657531871, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 3594725731, \"text\": \"@无天佛猪\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3126702629-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdzxOFYax2LL7d8B\", \"raw_message\": \"@无天佛猪 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 09:31:11',NULL),(449,'2022711173113108','{\"seq\": 384242, \"atme\": false, \"font\": \"宋体\", \"rand\": 349717573, \"time\": 1657531873, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 95237945, \"text\": \"@从零学起\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-3111908811-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdzyFNhERWLL7eEB\", \"raw_message\": \"@从零学起 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 09:31:13',NULL),(450,'2022711173114110','{\"seq\": 384243, \"atme\": false, \"font\": \"宋体\", \"rand\": 2103706038, \"time\": 1657531874, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2621785499, \"text\": \"@Superhero\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2862215684-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdzzfWQBtmLL7eIB\", \"raw_message\": \"@Superhero 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 09:31:14',NULL),(451,'2022711173118125','{\"seq\": 384245, \"atme\": false, \"font\": \"宋体\", \"rand\": 1968351558, \"time\": 1657531878, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 3213125755, \"text\": \"@y\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2534588607-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABdz1dVKpRmLL7eYB\", \"raw_message\": \"@y 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 09:31:18',NULL),(452,'202271118410137','{\"seq\": 384387, \"atme\": false, \"font\": \"宋体\", \"rand\": 799035277, \"time\": 1657533850, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1462272899, \"text\": \"@ℱℯℯ𝓛\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2517470016-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABd2DL6BPjWLL9ZoB\", \"raw_message\": \"@ℱℯℯ𝓛 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 10:04:10',NULL),(453,'20227111848144','{\"seq\": 384386, \"atme\": false, \"font\": \"宋体\", \"rand\": 2053448719, \"time\": 1657533848, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2747277198, \"text\": \"@Drunck\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2584619470-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABd2CemUkD2LL9ZgB\", \"raw_message\": \"@Drunck 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 10:04:08',NULL),(454,'202271118123188','{\"seq\": 1336033, \"atme\": false, \"font\": \"宋体\", \"rand\": 529027899, \"time\": 1657534323, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[交流]灰烬\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1312739712, \"nickname\": \"灰烬\"}, \"message\": [{\"text\": \"这个乘和减号帮忙解释下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1312739712, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphck4+0YAAFGLhH4hTO2LL93MB\", \"raw_message\": \"这个乘和减号帮忙解释下\", \"message_type\": \"group\"}','帮忙',1,'2022-07-11 10:12:03',NULL),(455,'2022711182614122','{\"seq\": 384568, \"atme\": false, \"font\": \"宋体\", \"rand\": 1831732150, \"time\": 1657535174, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1064150603, \"text\": \"@意大利心肌梗\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2718857557-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABd44bS4DtmLL+sYB\", \"raw_message\": \"@意大利心肌梗 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 10:26:14',NULL),(456,'2022711184113130','{\"seq\": 162101, \"atme\": false, \"font\": \"宋体\", \"rand\": 646146016, \"time\": 1657536073, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2565332691, \"nickname\": \"热销前端,java\"}, \"message\": [{\"qq\": 2923560434, \"text\": \"@要把伟大的祖国建设好\", \"type\": \"at\"}, {\"text\": \" 有偿收徒\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2565332691, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O45jn3tMAAnk1JoNn4GLL/kkB\", \"raw_message\": \"@要把伟大的祖国建设好 有偿收徒\", \"message_type\": \"group\"}','有偿',1,'2022-07-11 10:41:13',NULL),(457,'2022711184843182','{\"seq\": 384733, \"atme\": false, \"font\": \"宋体\", \"rand\": 635698468, \"time\": 1657536523, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1431035543, \"text\": \"@somebody\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2510009005-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABd7dJeP9JGLMAAsB\", \"raw_message\": \"@somebody 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 10:48:43',NULL),(458,'2022711184859114','{\"seq\": 384736, \"atme\": false, \"font\": \"宋体\", \"rand\": 1768663372, \"time\": 1657536539, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 752796692, \"text\": \"@携手,开到荼糜\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2307749998-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABd7gaWupTGLMABsB\", \"raw_message\": \"@携手,开到荼糜 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-11 10:48:59',NULL),(459,'2022711225146122','{\"seq\": 1336400, \"atme\": false, \"font\": \"宋体\", \"rand\": 330792158, \"time\": 1657538455, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 161293625, \"nickname\": \"161293625\"}, \"message\": [{\"text\": \"有人接单吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 161293625, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcgmdJTkAFGRQE7d83mLMB5cB\", \"raw_message\": \"有人接单吗\", \"message_type\": \"group\"}','人接单',1,'2022-07-11 14:51:46','测试'),(461,'202271263638115','{\"seq\": 1336400, \"atme\": false, \"font\": \"宋体\", \"rand\": 330792158, \"time\": 1657538455, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 161293625, \"nickname\": \"161293625\"}, \"message\": [{\"text\": \"有人接单吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 161293625, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcgmdJTkAFGRQE7d83mLMB5cB\", \"raw_message\": \"有人接单吗\", \"message_type\": \"group\"}','人接单',1,'2022-07-11 22:36:38','test'),(463,'202271273937149','{\"seq\": 162129, \"atme\": false, \"font\": \"宋体\", \"rand\": 430448279, \"time\": 1657582776, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1700566318, \"nickname\": \"html2\"}, \"message\": [{\"text\": \"亲们,目前我司在找小伙伴,长期合作,项目不复杂,阶段付费,待遇优厚。\\n有想接外包,可以微信搜索公众号:猿互联科技,关注留言你的技能方便联系哈。\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1700566318, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O42VclS4AAnlRGagel2LMtLgB\", \"raw_message\": \"亲们,目前我司在找小伙伴,长期合作,项目不复杂,阶段付费,待遇优厚。\\n有想接外包,可以微信搜索公众号:猿互联科技,关注留言你的技能方便联系哈。\", \"message_type\": \"group\"}','付费',1,'2022-07-11 23:39:37',NULL),(464,'202271284817167','{\"seq\": 1339234, \"atme\": false, \"font\": \"宋体\", \"rand\": 1352758424, \"time\": 1657586896, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[交流]小谭\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1611235218, \"nickname\": \"By_小谭\"}, \"message\": [{\"text\": \"兄弟们求助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1611235218, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcmAJf5IAFG9iUKF0mGLMxNAB\", \"raw_message\": \"兄弟们求助\", \"message_type\": \"group\"}','求助',1,'2022-07-12 00:48:17',NULL),(465,'20227128501106','{\"seq\": 10902, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3961096770, \"time\": 1657587000, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1611235218, \"nickname\": \"By_小谭\"}, \"message\": [{\"text\": \"兄弟们求助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1611235218, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaGAJf5IAACqW7BmKQmLMxTgB\", \"raw_message\": \"兄弟们求助\", \"message_type\": \"group\"}','求助',1,'2022-07-12 00:50:01',NULL),(466,'20227128503102','{\"seq\": 1038, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3917426753, \"time\": 1657587003, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1611235218, \"nickname\": \"By_小谭\"}, \"message\": [{\"text\": \"兄弟们求助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1611235218, \"group_id\": 701493338, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue3/Nuxt开发交流\", \"message_id\": \"Kc/wWmAJf5IAAAQO6X8wQWLMxTsB\", \"raw_message\": \"兄弟们求助\", \"message_type\": \"group\"}','求助',1,'2022-07-12 00:50:03',NULL),(467,'202271285239170','{\"seq\": 1339293, \"atme\": false, \"font\": \"汉仪蝶语体简\", \"rand\": 736285365, \"time\": 1657587158, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[交流]小谭\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1611235218, \"nickname\": \"By_小谭\"}, \"message\": [{\"text\": \"求助啊各位大佬们\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1611235218, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcmAJf5IAFG+dK+LStWLMxdYB\", \"raw_message\": \"求助啊各位大佬们\", \"message_type\": \"group\"}','求助',1,'2022-07-12 00:52:39',NULL),(468,'202271285636185','{\"seq\": 4571, \"atme\": false, \"font\": \"宋体\", \"rand\": 1044665379, \"time\": 1657587395, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 37, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2802182735, \"nickname\": \"单片机设计者\"}, \"message\": [{\"text\": \"\\n各位老板,嵌入式工程师私人接单:接各类stm32 51单片机arm嵌入式开发 抄写原理图 智能产品 娱乐产品 开发 有偿技术指导 小批量供货 需要的私聊\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2802182735, \"group_id\": 124041790, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React外包交流群\", \"message_id\": \"B2S6PqcF6k8AABHbPkRUI2LMxsMB\", \"raw_message\": \"\\n各位老板,嵌入式工程师私人接单:接各类stm32 51单片机arm嵌入式开发 抄写原理图 智能产品 娱乐产品 开发 有偿技术指导 小批量供货 需要的私聊\", \"message_type\": \"group\"}','有偿',1,'2022-07-12 00:56:36',NULL),(469,'202271292511134','{\"seq\": 4573, \"atme\": false, \"font\": \"宋体\", \"rand\": 1219276579, \"time\": 1657589110, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3450383637, \"nickname\": \"star\"}, \"message\": [{\"qq\": 729165621, \"text\": \"@说好一起陪你去看星辰大海\", \"type\": \"at\"}, {\"text\": \" 请问解决问题了吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3450383637, \"group_id\": 124041790, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React外包交流群\", \"message_id\": \"B2S6Ps2orRUAABHdSKyvI2LMzXYB\", \"raw_message\": \"@说好一起陪你去看星辰大海 请问解决问题了吗\", \"message_type\": \"group\"}','解决问题',1,'2022-07-12 01:25:11',NULL),(470,'202271292959180','{\"seq\": 74707, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1695225819, \"time\": 1657589399, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"小布丁\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1585517965, \"nickname\": \"吾\"}, \"message\": [{\"text\": \"这时候国家怎么不站出来帮忙?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1585517965, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE前端划水群\", \"message_id\": \"J/+MYF6BFY0AASPTZQsX22LMzpcB\", \"raw_message\": \"这时候国家怎么不站出来帮忙?\", \"message_type\": \"group\"}','帮忙',1,'2022-07-12 01:29:59',NULL),(471,'20227129496156','{\"seq\": 217783, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4257401300, \"time\": 1657590545, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"雨泽\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1026667291, \"nickname\": \"林\"}, \"message\": [{\"text\": \"都可以的 如果老板要求高让他花钱找团会研发一下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1026667291, \"group_id\": 703531738, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Android Studio互助群\", \"message_id\": \"Ke8K2j0xsxsAA1K3/cLJ1GLM0xEB\", \"raw_message\": \"都可以的 如果老板要求高让他花钱找团会研发一下\", \"message_type\": \"group\"}','花钱',1,'2022-07-12 01:49:06',NULL),(472,'202271295029149','{\"seq\": 387007, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 515531305, \"time\": 1657590628, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"male\", \"area\": \"上海\", \"card\": \"上海[前端]-初心\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1535392261, \"nickname\": \"初心\"}, \"message\": [{\"text\": \"群里是解决问题的 不是教学的 兄弟\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1535392261, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h61uEOgUABee/HrpiKWLM02QB\", \"raw_message\": \"群里是解决问题的 不是教学的 兄弟\", \"message_type\": \"group\"}','解决问题',1,'2022-07-12 01:50:29',NULL),(473,'20227129582119','{\"seq\": 19646, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2542425881, \"time\": 1657591081, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1962443189, \"nickname\": \"pomelo\"}, \"message\": [{\"text\": \"有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1962443189, \"group_id\": 528166164, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue/vue3\", \"message_id\": \"H3stFHT4gbUAAEy+l4pXGWLM1SkB\", \"raw_message\": \"有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-12 01:58:02',NULL),(474,'202271210416123','{\"seq\": 387110, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4097328403, \"time\": 1657591455, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 120, \"sex\": \"male\", \"area\": \"\", \"card\": \"李嘉图\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1102517143, \"nickname\": \"李嘉图\"}, \"message\": [{\"text\": \"自己花钱去玩儿,还浪费时间\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1102517143, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h60G3E5cABegm9DhFE2LM1p8B\", \"raw_message\": \"自己花钱去玩儿,还浪费时间\", \"message_type\": \"group\"}','花钱',1,'2022-07-12 02:04:16',NULL),(475,'20227121079129','{\"seq\": 13346, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 29188441, \"time\": 1657591628, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 32, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 599396621, \"nickname\": \"晴空万里\"}, \"message\": [{\"text\": \"商城开发 市面上涉及到的新零售商城、单用户商城、多用户商城、分销直销系统、抢购商城、拼团商城、竞价商城等 需要联系我,加微:MPKJ410\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 599396621, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VCO6EQ0AADQiAb1hWWLM10wB\", \"raw_message\": \"商城开发 市面上涉及到的新零售商城、单用户商城、多用户商城、分销直销系统、抢购商城、拼团商城、竞价商城等 需要联系我,加微:MPKJ410\", \"message_type\": \"group\"}','联系我',1,'2022-07-12 02:07:09',NULL),(476,'202271210744152','{\"seq\": 2595, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1556369726, \"time\": 1657591663, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 32, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 599396621, \"nickname\": \"晴空万里\"}, \"message\": [{\"text\": \"商城开发 市面上涉及到的新零售商城、单用户商城、多用户商城、分销直销系统、抢购商城、拼团商城、竞价商城等 需要联系我,加微:MPKJ410\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 599396621, \"group_id\": 621421868, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"C/C++/C#技术交流群\", \"message_id\": \"JQolLCO6EQ0AAAojXMRRPmLM128B\", \"raw_message\": \"商城开发 市面上涉及到的新零售商城、单用户商城、多用户商城、分销直销系统、抢购商城、拼团商城、竞价商城等 需要联系我,加微:MPKJ410\", \"message_type\": \"group\"}','联系我',1,'2022-07-12 02:07:44',NULL),(477,'2022712101032111','{\"seq\": 1339647, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3429444506, \"time\": 1657591831, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 1, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[沉默]是金\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2814150567, \"nickname\": \"�\"}, \"message\": [{\"text\": \"有没有大佬会做threejs的电子围栏效果的,可以帮忙讲解一下吗?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2814150567, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcqe8h6cAFHD/zGkrmmLM2BcB\", \"raw_message\": \"有没有大佬会做threejs的电子围栏效果的,可以帮忙讲解一下吗?\", \"message_type\": \"group\"}','帮忙',1,'2022-07-12 02:10:32',NULL),(478,'2022712101516152','{\"seq\": 387214, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3886926299, \"time\": 1657592116, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1959762008, \"nickname\": \"Douze\"}, \"message\": [{\"text\": \"这个对seo有什么帮助?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1959762008, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h63TPmFgABeiO563J22LM2TQB\", \"raw_message\": \"这个对seo有什么帮助?\", \"message_type\": \"group\"}','帮助',1,'2022-07-12 02:15:16',NULL),(479,'2022712101534183','{\"seq\": 387216, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3794678505, \"time\": 1657592133, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 120, \"sex\": \"male\", \"area\": \"\", \"card\": \"李嘉图\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1102517143, \"nickname\": \"李嘉图\"}, \"message\": [{\"text\": \"没帮助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1102517143, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h60G3E5cABeiQ4i4y6WLM2UUB\", \"raw_message\": \"没帮助\", \"message_type\": \"group\"}','帮助',1,'2022-07-12 02:15:34',NULL),(480,'2022712102213124','{\"seq\": 387286, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3350520163, \"time\": 1657592533, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1959762008, \"nickname\": \"Douze\"}, \"message\": [{\"text\": \"但是不理解这个对seo有什么帮助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1959762008, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h63TPmFgABejWx7ThY2LM2tUB\", \"raw_message\": \"但是不理解这个对seo有什么帮助\", \"message_type\": \"group\"}','帮助',1,'2022-07-12 02:22:13',NULL),(481,'2022712104352141','{\"seq\": 387416, \"atme\": false, \"font\": \"宋体\", \"rand\": 265923660, \"time\": 1657593831, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 512307158, \"text\": \"@西禾西禾\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2783045009-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABelYD9msTGLM3+cB\", \"raw_message\": \"@西禾西禾 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-12 02:43:52',NULL),(482,'2022712104352169','{\"seq\": 387417, \"atme\": false, \"font\": \"宋体\", \"rand\": 2035637965, \"time\": 1657593832, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1193583837, \"text\": \"@羡鱼\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2148821977-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABelZeVVezWLM3+gB\", \"raw_message\": \"@羡鱼 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-12 02:43:52',NULL),(483,'2022712104354186','{\"seq\": 387418, \"atme\": false, \"font\": \"宋体\", \"rand\": 866320415, \"time\": 1657593834, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 3223868679, \"text\": \"@阿吆OK\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2700940904-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABelaM6MAH2LM3+oB\", \"raw_message\": \"@阿吆OK 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-12 02:43:54',NULL),(484,'2022712104351121','{\"seq\": 387415, \"atme\": false, \"font\": \"宋体\", \"rand\": 1207454874, \"time\": 1657593830, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2192430371, \"text\": \"@gww\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2613260314-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABelXR/hMmmLM3+YB\", \"raw_message\": \"@gww 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-12 02:43:51',NULL),(485,'2022712104445121','{\"seq\": 1339718, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2078302594, \"time\": 1657593884, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[交流]可乐\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 4708016, \"nickname\": \"可乐、\"}, \"message\": [{\"text\": \"有偿 找人增加 前端微信登录,后台可以控制微信登录权限,能做的联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 4708016, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcgBH1rAAFHFGe+BhgmLM4BwB\", \"raw_message\": \"有偿 找人增加 前端微信登录,后台可以控制微信登录权限,能做的联系我\", \"message_type\": \"group\"}','有偿',1,'2022-07-12 02:44:45',NULL),(486,'2022712105044106','{\"seq\": 31332, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 626788070, \"time\": 1657594244, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1747686356, \"nickname\": \"宇宙最强无敌暗黑暴龙战士\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/1747686356/828816138-2898977207-9225CFE0E5B9941BB7CB582D9EBC2040/0?term=2\", \"file\": \"9225cfe0e5b9941bb7cb582d9ebc2040189106-551-448.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"大佬们帮忙看看我的,为什么我这一直在报跨域的错\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1747686356, \"group_id\": 828816138, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"pytorch/django/vue技术交流\", \"message_id\": \"MWa7Cmgrk9QAAHpkJVwG5mLM4YQB\", \"raw_message\": \"[图片]大佬们帮忙看看我的,为什么我这一直在报跨域的错\", \"message_type\": \"group\"}','帮忙',1,'2022-07-12 02:50:44',NULL),(487,'2022712111625140','{\"seq\": 60352, \"atme\": false, \"font\": \"宋体\", \"rand\": 1176419016, \"time\": 1657595785, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 32, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1525965569, \"nickname\": \"1525965569\"}, \"message\": [{\"text\": \"谁有直播和录播一体的,联系我一下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1525965569, \"group_id\": 955416469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小程序app开发接单群\", \"message_id\": \"OPJ/lVr0YwEAAOvARh66yGLM54kB\", \"raw_message\": \"谁有直播和录播一体的,联系我一下\", \"message_type\": \"group\"}','联系我',1,'2022-07-12 03:16:25',NULL),(488,'2022712112428152','{\"seq\": 387542, \"atme\": false, \"font\": \"宋体\", \"rand\": 1633266032, \"time\": 1657596267, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 2394023258, \"text\": \"@墨殇浅流\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2503382524-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABenWYVmpcGLM6WsB\", \"raw_message\": \"@墨殇浅流 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-12 03:24:28',NULL),(489,'2022712114344182','{\"seq\": 11046, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 496100371, \"time\": 1657597423, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"三亚\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3184206849, \"nickname\": \"Joey\"}, \"message\": [{\"text\": \"哪位大佬帮忙看一一下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3184206849, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaL3LJAEAACsmHZHkE2LM7e8B\", \"raw_message\": \"哪位大佬帮忙看一一下\", \"message_type\": \"group\"}','帮忙',1,'2022-07-12 03:43:44',NULL),(490,'202271211458159','{\"seq\": 162134, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1869753393, \"time\": 1657597508, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1577350959, \"nickname\": \"风霜何故\"}, \"message\": [{\"text\": \"全国首家APP免费开发,技术风投,战略合作。\\r行业内独角兽打造\\r帮助中小型企业互联网转型!\\r专业做软件开发\\r知识付费APP\\r教育平台APP\\r同城服务APP\\r社交直播APP\\r家政APP\\r悬赏任务发布APP\\r多用户商城APP\\r全行业APP平台定制开发\\r华为云信息安全服务\\r仿爱聊交友APP开发\\r三方支付接口\\r爱搭支付对接\\r微信:YIZHIAINI-ZSJ\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1577350959, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O414Edy8AAnlWb3IsMWLM7kQB\", \"raw_message\": \"全国首家APP免费开发,技术风投,战略合作。\\r行业内独角兽打造\\r帮助中小型企业互联网转型!\\r专业做软件开发\\r知识付费APP\\r教育平台APP\\r同城服务APP\\r社交直播APP\\r家政APP\\r悬赏任务发布APP\\r多用户商城APP\\r全行业APP平台定制开发\\r华为云信息安全服务\\r仿爱聊交友APP开发\\r三方支付接口\\r爱搭支付对接\\r微信:YIZHIAINI-ZSJ\", \"message_type\": \"group\"}','付费',1,'2022-07-12 03:45:08',NULL),(491,'2022712115346154','{\"seq\": 13355, \"atme\": false, \"font\": \"宋体\", \"rand\": 4029193687, \"time\": 1657598025, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2339510255, \"nickname\": \"勿念.\"}, \"message\": [{\"text\": \"出售带分销制度的商城系统\\n三级分销+平级奖+级差奖+业绩分红+独立佣金\\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\\n\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2339510255, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VItyF+8AADQr8Cid12LM8EkB\", \"raw_message\": \"出售带分销制度的商城系统\\n三级分销+平级奖+级差奖+业绩分红+独立佣金\\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\\n\", \"message_type\": \"group\"}','联系我',1,'2022-07-12 03:53:46',NULL),(492,'202271212743114','{\"seq\": 387879, \"atme\": false, \"font\": \"宋体\", \"rand\": 149538288, \"time\": 1657598862, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2854196310, \"nickname\": \"Q群管家\"}, \"message\": [{\"qq\": 1933235237, \"text\": \"@Q\", \"type\": \"at\"}, {\"text\": \" 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2854196310/599777771-2414079727-F0D779D8B954553797B5D25DB14D6957/0?term=2\", \"file\": \"f0d779d8b954553797b5d25db14d695776398-594-770.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\n——来自群管理员(495715626)的编辑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2854196310, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66oflFYABesnCOnF8GLM844B\", \"raw_message\": \"@Q 欢迎进入本群。\\n1、新人请看如下\\n2、本群只欢迎保持学习心的人\\n3、如果得到了帮助希望你也能帮助他人[图片]\\n——来自群管理员(495715626)的编辑\", \"message_type\": \"group\"}','帮助',1,'2022-07-12 04:07:43',NULL),(493,'2022712121837149','{\"seq\": 75202, \"atme\": false, \"font\": \"宋体\", \"rand\": 1136608366, \"time\": 1657599516, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 227485523, \"nickname\": \"遗憾不止思念\"}, \"message\": [{\"text\": \"你帮忙写了要不/汪汪/汪汪\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 227485523, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE前端划水群\", \"message_id\": \"J/+MYA2PJ1MAASXCQ79EbmLM9hwB\", \"raw_message\": \"你帮忙写了要不/汪汪/汪汪\", \"message_type\": \"group\"}','帮忙',1,'2022-07-12 04:18:37',NULL),(494,'2022712122446176','{\"seq\": 67284, \"atme\": false, \"font\": \"宋体\", \"rand\": 2051796929, \"time\": 1657599885, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"糊里糊涂没了\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 767565538, \"nickname\": \"吃瓜不嫌事大🍉\"}, \"message\": [{\"text\": \"有老板想做数藏系统的可以联系我,有现成的,优惠多多,请让我助力各位老板起飞\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 767565538, \"group_id\": 215693495, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Js,react,Vue前端开发\", \"message_id\": \"DNs4ty3AHuIAAQbUekvvwWLM940B\", \"raw_message\": \"有老板想做数藏系统的可以联系我,有现成的,优惠多多,请让我助力各位老板起飞\", \"message_type\": \"group\"}','联系我',1,'2022-07-12 04:24:46',NULL),(495,'2022712124820122','{\"seq\": 70916, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1358787546, \"time\": 1657601299, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 34, \"sex\": \"male\", \"area\": \"赞比亚\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 79620047, \"nickname\": \"水无鱼\"}, \"message\": [{\"text\": \"有偿请帮忙\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 79620047, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdQS+588AARUEUP1z2mLM/RMB\", \"raw_message\": \"有偿请帮忙\", \"message_type\": \"group\"}','有偿',1,'2022-07-12 04:48:20',NULL),(496,'2022712131927180','{\"seq\": 25772, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 246049905, \"time\": 1657603167, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1610532721, \"nickname\": \"161\"}, \"message\": [{\"text\": \"友友们,求助一个问题;\\r\\r有一个A功能,需要掌握了之后,去重构B功能;\\r\\r但是这个A功能,我实在是,不能完全掌握,或者说感受不深刻,我打算再死磕一下A功能;\\r\\r求解:怎么看后台代码,并梳理一份较为清晰的逻辑, 了解的@我一下,谢谢了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1610532721, \"group_id\": 858753621, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"jquery/css/javascript/js/vue/t\", \"message_id\": \"My+KVV/+x3EAAGSsDqpscWLNBF8B\", \"raw_message\": \"友友们,求助一个问题;\\r\\r有一个A功能,需要掌握了之后,去重构B功能;\\r\\r但是这个A功能,我实在是,不能完全掌握,或者说感受不深刻,我打算再死磕一下A功能;\\r\\r求解:怎么看后台代码,并梳理一份较为清晰的逻辑, 了解的@我一下,谢谢了\", \"message_type\": \"group\"}','求助',1,'2022-07-12 05:19:27',NULL),(497,'2022712132620129','{\"seq\": 33530, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 168153975, \"time\": 1657603579, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIL6CgXTd2LNBfsB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-12 05:26:20',NULL),(498,'2022712132644170','{\"seq\": 6367, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1014409350, \"time\": 1657603603, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABjfPHaohmLNBhMB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-12 05:26:44',NULL),(499,'2022712132950115','{\"seq\": 31383, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3054315869, \"time\": 1657603789, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"武汉\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2806197675, \"nickname\": \"华屿\"}, \"message\": [{\"text\": \"这就是给你装了个vue的一个依赖帮助你更快的搭建项目\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2806197675, \"group_id\": 828816138, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"pytorch/django/vue技术交流\", \"message_id\": \"MWa7CqdDLasAAHqXtg0pXWLNBs0B\", \"raw_message\": \"这就是给你装了个vue的一个依赖帮助你更快的搭建项目\", \"message_type\": \"group\"}','帮助',1,'2022-07-12 05:29:50',NULL),(500,'2022712141222188','{\"seq\": 162141, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4232946352, \"time\": 1657606341, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1214880285, \"nickname\": \"厦门软件开发\"}, \"message\": [{\"text\": \"Python,java,c#简易程序, 小型网站定制开发 后端定制, php, Springboot API接口开发,有需求的可联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1214880285, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O40hpmh0AAnld/E2isGLNEMUB\", \"raw_message\": \"Python,java,c#简易程序, 小型网站定制开发 后端定制, php, Springboot API接口开发,有需求的可联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-12 06:12:22',NULL),(501,'202271214557182','{\"seq\": 1340248, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3279543090, \"time\": 1657608907, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[交流]洋洋\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2990125749, \"nickname\": \"洋33 🍀🔥🏚⛵💜🍦\"}, \"source\": {\"seq\": 1340246, \"rand\": 1878481008, \"time\": 1657608774, \"message\": \"接单接单++++\", \"user_id\": 1905376279}, \"message\": [{\"qq\": 1905376279, \"text\": \"@SKY[交流]小码哥\", \"type\": \"at\"}, {\"text\": \" 免费帮忙写作业\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2990125749, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcrI5srUAFHNYw3nbMmLNGssB\", \"raw_message\": \"@SKY[交流]小码哥 免费帮忙写作业\", \"message_type\": \"group\"}','帮忙',1,'2022-07-12 06:55:07',NULL),(502,'202271215356130','{\"seq\": 71241, \"atme\": false, \"font\": \"宋体\", \"rand\": 1611370166, \"time\": 1657609436, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1916025282, \"nickname\": \"达不刘\"}, \"message\": [{\"text\": \"有没有好兄弟可以远程帮忙安装node和vue的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1916025282, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdXI0OcIAARZJYAuOtmLNHNwB\", \"raw_message\": \"有没有好兄弟可以远程帮忙安装node和vue的\", \"message_type\": \"group\"}','帮忙',1,'2022-07-12 07:03:56',NULL),(503,'202271215540175','{\"seq\": 951769, \"atme\": false, \"font\": \"黑体\", \"rand\": 3972219842, \"time\": 1657609539, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"北京\", \"card\": \"做网站微信小程序找我\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 2982270235, \"nickname\": \"答案\"}, \"message\": [{\"text\": \"有接单的吗 有一个页面需要换一下 顶部和底部 50 接的私聊我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2982270235, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB7HB1RsADoXZ7MNDwmLNHUMB\", \"raw_message\": \"有接单的吗 有一个页面需要换一下 顶部和底部 50 接的私聊我\", \"message_type\": \"group\"}','有接单的',1,'2022-07-12 07:05:40',NULL),(504,'2022712151910130','{\"seq\": 33532, \"atme\": false, \"font\": \"宋体\", \"rand\": 1657625484, \"time\": 1657610350, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 775363212, \"nickname\": \"a \'ゞ武僧.\"}, \"message\": [{\"text\": \"特价出阿里云备案cn,需要联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 775363212, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMC43GowAAIL8Ys1bjGLNIG4B\", \"raw_message\": \"特价出阿里云备案cn,需要联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-12 07:19:10',NULL),(505,'2022712152346138','{\"seq\": 275251, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2645545609, \"time\": 1657610625, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1908587440, \"nickname\": \"海\"}, \"message\": [{\"text\": \"求助 求助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1908587440, \"group_id\": 692522608, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端Vue开发程序员贰\", \"message_id\": \"KUcOcHHCu7AABDMzna/SiWLNIYEB\", \"raw_message\": \"求助 求助\", \"message_type\": \"group\"}','求助',1,'2022-07-12 07:23:46',NULL),(506,'2022712153117157','{\"seq\": 5236, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2462879738, \"time\": 1657611077, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 36, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 106651459, \"nickname\": \"明天更美丽\"}, \"message\": [{\"text\": \"出售社群团购系统\\r三级分销+一键帮卖+佣金自由设置+私域+商家后台+总后台,小程序 PC网页 ,有需要的老板请联系我txyfw6666\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 106651459, \"group_id\": 581532578, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/小程序外包交流\", \"message_id\": \"Iql7ogZbX0MAABR0ksyP+mLNI0UB\", \"raw_message\": \"出售社群团购系统\\r三级分销+一键帮卖+佣金自由设置+私域+商家后台+总后台,小程序 PC网页 ,有需要的老板请联系我txyfw6666\", \"message_type\": \"group\"}','联系我',1,'2022-07-12 07:31:17',NULL),(507,'2022712153827100','{\"seq\": 1340324, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3658651948, \"time\": 1657611507, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[交流]行者\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 42246692, \"nickname\": \"行者\"}, \"message\": [{\"text\": \"有偿!!!大哥们\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 42246692, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcgKEoiQAFHOk2hKZLGLNJPMB\", \"raw_message\": \"有偿!!!大哥们\", \"message_type\": \"group\"}','有偿',1,'2022-07-12 07:38:27',NULL),(508,'2022712154130108','{\"seq\": 11217, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2214132675, \"time\": 1657611690, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1243860484, \"nickname\": \"幸运\"}, \"message\": [{\"qq\": 3480664476, \"text\": \"@:-)\", \"type\": \"at\"}, {\"text\": \" 大佬 麻烦您帮忙看一下我这个错误可以吗?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1243860484, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaEojzgQAACvRg/j7w2LNJaoB\", \"raw_message\": \"@:-) 大佬 麻烦您帮忙看一下我这个错误可以吗?\", \"message_type\": \"group\"}','帮忙',1,'2022-07-12 07:41:30',NULL),(509,'202271215458106','{\"seq\": 1340349, \"atme\": false, \"font\": \"宋体\", \"rand\": 1152708041, \"time\": 1657611907, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[交流]凉白开\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1453499821, \"nickname\": \"凉白开\"}, \"message\": [{\"text\": \"有没大佬帮忙看看这是什么问题啊,刚学react\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/1453499821/2013934898-3193255575-8FD439378DDA29BE88D6B4D4CF8AB5AA/0?term=2\", \"file\": \"8fd439378dda29be88d6b4d4cf8ab5aa11288-962-201.png\", \"type\": \"image\", \"asface\": false}], \"self_id\": 1841031740, \"user_id\": 1453499821, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphclaipa0AFHO9RLTtyWLNJoMB\", \"raw_message\": \"有没大佬帮忙看看这是什么问题啊,刚学react[图片]\", \"message_type\": \"group\"}','帮忙',1,'2022-07-12 07:45:08',NULL),(510,'2022712154632135','{\"seq\": 49162, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1551282574, \"time\": 1657611992, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"owner\", \"level\": 1, \"title\": \"\", \"user_id\": 1195566313, \"nickname\": \"张满月\"}, \"message\": [{\"text\": \"有人接单 联系他 \", \"type\": \"text\"}, {\"qq\": 306555963, \"text\": \"@失忆的小芒果\", \"type\": \"at\"}, {\"text\": \" \", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1195566313, \"group_id\": 863981142, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"程序员接单群\", \"message_id\": \"M39OVkdC5OkAAMAKXHaxjmLNJtgB\", \"raw_message\": \"有人接单 联系他 @失忆的小芒果 \", \"message_type\": \"group\"}','人接单',1,'2022-07-12 07:46:32',NULL),(511,'2022712161352160','{\"seq\": 47378, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2748812546, \"time\": 1657613632, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1936499783, \"nickname\": \" D\"}, \"message\": [{\"text\": \"要学会 自己百度解决问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1936499783, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBXNspEcAALkSo9eNAmLNLUAB\", \"raw_message\": \"要学会 自己百度解决问题\", \"message_type\": \"group\"}','解决问题',1,'2022-07-12 08:13:52',NULL),(512,'2022712162044163','{\"seq\": 47407, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 691802598, \"time\": 1657614044, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"male\", \"area\": \"杭州\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 776189529, \"nickname\": \"颜军\"}, \"message\": [{\"text\": \"求助大佬\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 776189529, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBS5DtlkAALkvKTwR5mLNLtwB\", \"raw_message\": \"求助大佬\", \"message_type\": \"group\"}','求助',1,'2022-07-12 08:20:44',NULL),(513,'2022712163711158','{\"seq\": 15844, \"atme\": false, \"font\": \"宋体\", \"rand\": 1825205737, \"time\": 1657615031, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2669526638, \"nickname\": \"Awen\"}, \"message\": [{\"text\": \"react-big-screen npm install一直报错 求助🙏🙏🙏\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2669526638, \"group_id\": 713105837, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"开源项目Vue2/Vue3/React-bi\", \"message_id\": \"KoEhrZ8dvm4AAD3kbMpt6WLNMrcB\", \"raw_message\": \"react-big-screen npm install一直报错 求助🙏🙏🙏\", \"message_type\": \"group\"}','求助',1,'2022-07-12 08:37:11',NULL),(514,'202271216438104','{\"seq\": 71316, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 125680055, \"time\": 1657615388, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 31, \"sex\": \"male\", \"area\": \"哈尔滨\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 543539666, \"nickname\": \"Mè★回首、\"}, \"message\": [{\"text\": \"求助个问题可以吗?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 543539666, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdSBlwdIAARaUB325t2LNNBwB\", \"raw_message\": \"求助个问题可以吗?\", \"message_type\": \"group\"}','求助',1,'2022-07-12 08:43:08',NULL),(515,'2022712164810139','{\"seq\": 13372, \"atme\": false, \"font\": \"宋体\", \"rand\": 4185614851, \"time\": 1657615690, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2339510255, \"nickname\": \"勿念.\"}, \"message\": [{\"text\": \"出售带分销制度的商城系统\\n三级分销+平级奖+级差奖+业绩分红+独立佣金\\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2339510255, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VItyF+8AADQ8+XtqA2LNNUoB\", \"raw_message\": \"出售带分销制度的商城系统\\n三级分销+平级奖+级差奖+业绩分红+独立佣金\\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-12 08:48:10',NULL),(516,'2022712165431160','{\"seq\": 146199, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2352569118, \"time\": 1657616071, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 56, \"sex\": \"male\", \"area\": \"海口\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2292979127, \"nickname\": \"末渡\"}, \"message\": [{\"text\": \"大佬们帮忙看看,画曲线时,当穿过文字,曲线路径怎么飘移到左上角了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2292979127, \"group_id\": 145454260, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/Webpack/NodeJs\", \"message_id\": \"CKt0tIisFbcAAjsXjDlbHmLNNscB\", \"raw_message\": \"大佬们帮忙看看,画曲线时,当穿过文字,曲线路径怎么飘移到左上角了\", \"message_type\": \"group\"}','帮忙',1,'2022-07-12 08:54:31',NULL),(517,'20227121724118','{\"seq\": 388903, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2655087900, \"time\": 1657616524, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"three.js学习中\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1500549684, \"nickname\": \"本格\"}, \"message\": [{\"text\": \"多隆牛逼嘛 , 多隆能帮群友解决问题嘛\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1500549684, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h61lwkjQABe8nnkFtHGLNOIwB\", \"raw_message\": \"多隆牛逼嘛 , 多隆能帮群友解决问题嘛\", \"message_type\": \"group\"}','解决问题',1,'2022-07-12 09:02:04',NULL),(518,'202271217254180','{\"seq\": 285528, \"atme\": false, \"font\": \"宋体\", \"rand\": 1394752887, \"time\": 1657617904, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"韶关\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1363077894, \"nickname\": \"☀小胖子❃\"}, \"message\": [{\"text\": \"有没那位大佬可以帮忙看下这个是怎么用的?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1363077894, \"group_id\": 316911865, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"ng-alain\", \"message_id\": \"EuOw+VE+6wYABFtYUyI9d2LNPfAB\", \"raw_message\": \"有没那位大佬可以帮忙看下这个是怎么用的?\", \"message_type\": \"group\"}','帮忙',1,'2022-07-12 09:25:04',NULL),(519,'2022712172933172','{\"seq\": 71431, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4092325707, \"time\": 1657618173, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"遂宁\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2323053328, \"nickname\": \"。。。\"}, \"message\": [{\"text\": \"百度3分钟解决问题 问群吹牛逼2小时\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2323053328, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdYp2+xAAARcH8+vvS2LNPv0B\", \"raw_message\": \"百度3分钟解决问题 问群吹牛逼2小时\", \"message_type\": \"group\"}','解决问题',1,'2022-07-12 09:29:33',NULL),(520,'2022712173342119','{\"seq\": 300140, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 959610276, \"time\": 1657618422, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"熟练使用面向百度编程的程序猿\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 614878398, \"nickname\": \"Chen\"}, \"message\": [{\"text\": \"谢谢两位帮忙\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 614878398, \"group_id\": 517315521, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue学习交流群\", \"message_id\": \"HtWbwSSmTL4ABJRsOTJ9pGLNP/YB\", \"raw_message\": \"谢谢两位帮忙\", \"message_type\": \"group\"}','帮忙',1,'2022-07-12 09:33:42',NULL),(521,'2022712174054126','{\"seq\": 1340617, \"atme\": false, \"font\": \"宋体\", \"rand\": 205451983, \"time\": 1657618854, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"安阳\", \"card\": \"SKY[交流]KCC\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1531029485, \"nickname\": \"√\"}, \"message\": [{\"text\": \"有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1531029485, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcltBp+0AFHTJDD7yz2LNQaYB\", \"raw_message\": \"有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-12 09:40:54',NULL),(522,'2022712174111106','{\"seq\": 1340621, \"atme\": false, \"font\": \"汉仪蝶语体简\", \"rand\": 393179424, \"time\": 1657618871, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[交流]李子\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1923606991, \"nickname\": \"李子\"}, \"message\": [{\"text\": \"有偿啊。。。\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1923606991, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcnKn6c8AFHTNF29xIGLNQbcB\", \"raw_message\": \"有偿啊。。。\", \"message_type\": \"group\"}','有偿',1,'2022-07-12 09:41:11',NULL),(523,'2022712174159165','{\"seq\": 33537, \"atme\": false, \"font\": \"宋体\", \"rand\": 1657647498, \"time\": 1657618919, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 775363212, \"nickname\": \"a \'ゞ武僧.\"}, \"message\": [{\"text\": \"特价出阿里云备案cn,需要联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 775363212, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMC43GowAAIMBYs2ximLNQecB\", \"raw_message\": \"特价出阿里云备案cn,需要联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-12 09:41:59',NULL),(524,'202271218238148','{\"seq\": 13378, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1111564991, \"time\": 1657620158, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1207683482, \"nickname\": \"丶超人不会飞\"}, \"message\": [{\"text\": \"有需要的伙伴联系我:\\r1. 高质量软著代写\\r2. 软著代报\\r3. 可运行视频软件\\r4. 软测报告\\r5. 实用新型、外观专利和发明专利\\r6. 专利撰写\\r7. 商标\\r可签合同,开发票(换群+)\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1207683482, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VEf7yZoAADRCQkEiv2LNRr4B\", \"raw_message\": \"有需要的伙伴联系我:\\r1. 高质量软著代写\\r2. 软著代报\\r3. 可运行视频软件\\r4. 软测报告\\r5. 实用新型、外观专利和发明专利\\r6. 专利撰写\\r7. 商标\\r可签合同,开发票(换群+)\", \"message_type\": \"group\"}','联系我',1,'2022-07-12 10:02:38',NULL),(525,'202271218650127','{\"seq\": 9473, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3212577660, \"time\": 1657620410, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1840773287, \"nickname\": \"怪大叔\"}, \"message\": [{\"text\": \"有没屌大的帮忙看下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1840773287, \"group_id\": 522976012, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue3生态学习交流\", \"message_id\": \"Hyv7DG23+KcAACUBv3wLfGLNR7oB\", \"raw_message\": \"有没屌大的帮忙看下\", \"message_type\": \"group\"}','帮忙',1,'2022-07-12 10:06:50',NULL),(526,'2022712183652174','{\"seq\": 33540, \"atme\": false, \"font\": \"宋体\", \"rand\": 1657643212, \"time\": 1657622212, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 775363212, \"nickname\": \"a \'ゞ武僧.\"}, \"message\": [{\"text\": \"特价出阿里云备案cn,需要联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 775363212, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMC43GowAAIMEYs2gzGLNTsQB\", \"raw_message\": \"特价出阿里云备案cn,需要联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-12 10:36:52',NULL),(527,'2022712184211101','{\"seq\": 12619, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2476886248, \"time\": 1657622531, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 35, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 5809985, \"nickname\": \"旭柔网络\"}, \"message\": [{\"text\": \"找一个熟悉TP框架的后端 有偿修改个BUG 有空的饲料\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 5809985, \"group_id\": 74262192, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端html/js/vue/h5/小程序\", \"message_id\": \"BG0msABYp0EAADFLk6JI6GLNUAMB\", \"raw_message\": \"找一个熟悉TP框架的后端 有偿修改个BUG 有空的饲料\", \"message_type\": \"group\"}','有偿',1,'2022-07-12 10:42:11',NULL),(528,'2022712192446118','{\"seq\": 1341506, \"atme\": false, \"font\": \"汉仪蝶语体简\", \"rand\": 1516200574, \"time\": 1657625086, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[交流]小谭\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1611235218, \"nickname\": \"By_小谭\"}, \"source\": {\"seq\": 1341497, \"rand\": 1100162606, \"time\": 1657625059, \"message\": \"有人知道v-infinite-scroll无限滚动无法触发是怎么回事吗,在原来的vue架构上是正常,然后重构为nuxt架构后v-infinite-scroll就无法触发了\", \"user_id\": 1611235218}, \"message\": [{\"qq\": 1611235218, \"text\": \"@SKY[交流]小谭\", \"type\": \"at\"}, {\"text\": \" 兄弟们求助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1611235218, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcmAJf5IAFHhCWl9ifmLNWf4B\", \"raw_message\": \"@SKY[交流]小谭 兄弟们求助\", \"message_type\": \"group\"}','求助',1,'2022-07-12 11:24:46',NULL),(529,'2022712194748175','{\"seq\": 1341627, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1588862223, \"time\": 1657626468, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"安阳\", \"card\": \"SKY[交流]KCC\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1531029485, \"nickname\": \"√\"}, \"message\": [{\"text\": \"vue + flask 做 谁会 做个 东西 有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1531029485, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcltBp+0AFHi7XrQdD2LNX2QB\", \"raw_message\": \"vue + flask 做 谁会 做个 东西 有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-12 11:47:48',NULL),(530,'2022712195044115','{\"seq\": 28746, \"atme\": false, \"font\": \"宋体\", \"rand\": 792862806, \"time\": 1657626644, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 35, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 5809985, \"nickname\": \"旭柔网络\"}, \"message\": [{\"text\": \"有没有技术空着,小程序刷新了不更新数据,需要重启小程序才可以更新,谁遇到过,会弄的私聊,有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 5809985, \"group_id\": 233087398, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Js,,Vue,react前端外包\", \"message_id\": \"DeShpgBYp0EAAHBKL0IgVmLNYBQB\", \"raw_message\": \"有没有技术空着,小程序刷新了不更新数据,需要重启小程序才可以更新,谁遇到过,会弄的私聊,有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-12 11:50:44',NULL),(531,'2022712203933179','{\"seq\": 33543, \"atme\": false, \"font\": \"宋体\", \"rand\": 1657652683, \"time\": 1657629573, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 775363212, \"nickname\": \"a \'ゞ武僧.\"}, \"message\": [{\"text\": \"特价出阿里云备案cn,需要联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 775363212, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMC43GowAAIMHYs3Fy2LNa4UB\", \"raw_message\": \"特价出阿里云备案cn,需要联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-12 12:39:33',NULL),(532,'2022712205158141','{\"seq\": 96653, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 510200116, \"time\": 1657630318, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 29, \"sex\": \"male\", \"area\": \"重庆\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2226806161, \"nickname\": \"web前端-徐\"}, \"message\": [{\"qq\": 1599842519, \"text\": \"@渔夫\", \"type\": \"at\"}, {\"text\": \" 帮忙看看\", \"type\": \"text\"}, {\"id\": 118, \"text\": \"抱拳\", \"type\": \"face\"}], \"self_id\": 1841031740, \"user_id\": 2226806161, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp94S6XZEAAXmNHmkJNGLNbm4B\", \"raw_message\": \"@渔夫 帮忙看看[抱拳]\", \"message_type\": \"group\"}','帮忙',1,'2022-07-12 12:51:58',NULL),(533,'2022712213313136','{\"seq\": 71622, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 200286931, \"time\": 1657632793, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 14, \"sex\": \"male\", \"area\": \"阿富汗\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1942195908, \"nickname\": \"男儿当自强\"}, \"message\": [{\"text\": \"小红包求助一个小问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1942195908, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdXPDjsQAARfGC/Ai02LNeBkB\", \"raw_message\": \"小红包求助一个小问题\", \"message_type\": \"group\"}','求助',1,'2022-07-12 13:33:13',NULL),(534,'2022712213720179','{\"seq\": 28751, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1527160595, \"time\": 1657633040, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 35, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 5809985, \"nickname\": \"旭柔网络\"}, \"message\": [{\"text\": \"需要会VUE的 有偿修改\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 5809985, \"group_id\": 233087398, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Js,,Vue,react前端外包\", \"message_id\": \"DeShpgBYp0EAAHBPWwafE2LNeRAB\", \"raw_message\": \"需要会VUE的 有偿修改\", \"message_type\": \"group\"}','有偿',1,'2022-07-12 13:37:20',NULL),(535,'2022712214418106','{\"seq\": 390122, \"atme\": false, \"font\": \"宋体\", \"rand\": 1958261117, \"time\": 1657633458, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 344735648, \"nickname\": \"今天喝水了吗?\"}, \"message\": [{\"text\": \"求助!为什么border边框后,之前居中的文字移动到下面去了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 344735648, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6xSMP6AABfPqdLixfWLNerIB\", \"raw_message\": \"求助!为什么border边框后,之前居中的文字移动到下面去了\", \"message_type\": \"group\"}','求助',1,'2022-07-12 13:44:18',NULL),(536,'20227122216176','{\"seq\": 390208, \"atme\": false, \"font\": \"宋体\", \"rand\": 1833965759, \"time\": 1657634467, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 344735648, \"nickname\": \"今天喝水了吗?\"}, \"source\": {\"seq\": 390201, \"rand\": 893541079, \"time\": 1657634281, \"message\": \"文本属性你看完了吗@今天喝水了吗? \", \"user_id\": 2912788062}, \"message\": [{\"qq\": 2912788062, \"text\": \"@\", \"type\": \"at\"}, {\"text\": \" 其他人都挺好的,你就别说话了。我菜我认,但是我寻求帮助又不是来着听冷嘲热讽阴阳怪气儿的,就别在那秀你多熟练多用功了成么\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 344735648, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6xSMP6AABfRAbVAYv2LNfqMB\", \"raw_message\": \"@ 其他人都挺好的,你就别说话了。我菜我认,但是我寻求帮助又不是来着听冷嘲热讽阴阳怪气儿的,就别在那秀你多熟练多用功了成么\", \"message_type\": \"group\"}','帮助',1,'2022-07-12 14:01:06',NULL),(537,'2022712223236177','{\"seq\": 5696, \"atme\": false, \"font\": \"宋体\", \"rand\": 1657637322, \"time\": 1657636357, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1663875617, \"nickname\": \"一手域名-中间商可谈价\"}, \"message\": [{\"text\": \"特价出阿里云备案cn,需要联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1663875617, \"group_id\": 831071233, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"开发\", \"message_id\": \"MYkkAWMsuiEAABZAYs2JymLNhgUB\", \"raw_message\": \"特价出阿里云备案cn,需要联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-12 14:32:36',NULL),(538,'2022712231455145','{\"seq\": 60405, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3353883156, \"time\": 1657638895, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"female\", \"area\": \"武汉\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 234958906, \"nickname\": \"中云AI智能云防护小可\"}, \"message\": [{\"text\": \"专业解决服务器被攻击问题,先解决后付费!需要的联系\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 234958906, \"group_id\": 955416469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小程序app开发接单群\", \"message_id\": \"OPJ/lQ4BMDoAAOv1x+gyFGLNj+8B\", \"raw_message\": \"专业解决服务器被攻击问题,先解决后付费!需要的联系\", \"message_type\": \"group\"}','付费',1,'2022-07-12 15:14:55',NULL),(539,'2022712234639117','{\"seq\": 13389, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 591848861, \"time\": 1657640799, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 30, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1514658712, \"nickname\": \"小程序,软件定制开发\"}, \"message\": [{\"text\": \"有什么问题可以联系我,晚安\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1514658712, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VFpH25gAADRNI0blnWLNl18B\", \"raw_message\": \"有什么问题可以联系我,晚安\", \"message_type\": \"group\"}','联系我',1,'2022-07-12 15:46:39',NULL),(540,'202271305933103','{\"seq\": 11440, \"atme\": false, \"font\": \"宋体\", \"rand\": 551398093, \"time\": 1657645173, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2946860332, \"nickname\": \"、\"}, \"message\": [{\"text\": \"有没有老哥会uniapp打包的h5授权微信,有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2946860332, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaK+lhSwAACywIN2qzWLNqHUB\", \"raw_message\": \"有没有老哥会uniapp打包的h5授权微信,有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-12 16:59:33',NULL),(541,'202271311640130','{\"seq\": 390762, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1700984533, \"time\": 1657646200, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 403483147, \"nickname\": \" W\"}, \"message\": [{\"text\": \"前端项目有人接单么\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 403483147, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6xgMqgsABfZqZWL21WLNrHgB\", \"raw_message\": \"前端项目有人接单么\", \"message_type\": \"group\"}','人接单',1,'2022-07-12 17:16:40',NULL),(542,'202271385011180','{\"seq\": 1343750, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4175276012, \"time\": 1657673411, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"安道尔\", \"card\": \"SKY[交流]井井\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1657500588, \"nickname\": \"井\"}, \"message\": [{\"text\": \"简历也很少联系我的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1657500588, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcmLLc6wAFIEG+N2n7GLOFsMB\", \"raw_message\": \"简历也很少联系我的\", \"message_type\": \"group\"}','联系我',1,'2022-07-13 00:50:11',NULL),(543,'202271394315101','{\"seq\": 258349, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 431547191, \"time\": 1657676595, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"male\", \"area\": \"\", \"card\": \"{haozhan.com}-Nightmare\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1593038861, \"nickname\": \"Nightmare\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/1593038861/3813480257-3027425781-26340EFDFE91FB3BEC39AAA5E264CA66/0?term=2\", \"file\": \"26340efdfe91fb3bec39aaa5e264ca66987-68-58.jpg\", \"type\": \"image\", \"asface\": false}, {\"text\": \"谁有那种。抢画拆画的源码。有偿购买\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1593038861, \"group_id\": 323480257, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"thinkphp交流tp5\", \"message_id\": \"E0fqwV7z2A0AA/EtGbjjN2LOIzMB\", \"raw_message\": \"[图片]谁有那种。抢画拆画的源码。有偿购买\", \"message_type\": \"group\"}','有偿',1,'2022-07-13 01:43:15',NULL),(544,'202271395915152','{\"seq\": 13400, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2050640677, \"time\": 1657677555, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 33, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 811948956, \"nickname\": \"网站APP定制开发\"}, \"message\": [{\"text\": \"定制各类型网站!软件开发,APP、微信网站、手机网站、小程序,有需要的朋友可随时联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 811948956, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VDBlW5wAADRYejpLJWLOJvMB\", \"raw_message\": \"定制各类型网站!软件开发,APP、微信网站、手机网站、小程序,有需要的朋友可随时联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-13 01:59:15',NULL),(545,'202271395935129','{\"seq\": 1344424, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3156794066, \"time\": 1657677575, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 15, \"sex\": \"male\", \"area\": \"长沙\", \"card\": \"SKY[交流]静静\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 761546273, \"nickname\": \"静\"}, \"message\": [{\"text\": \"没人接单吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 761546273, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphci1kRiEAFIOovCja0mLOJwcB\", \"raw_message\": \"没人接单吗\", \"message_type\": \"group\"}','人接单',1,'2022-07-13 01:59:35',NULL),(546,'202271310439169','{\"seq\": 31478, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 501143596, \"time\": 1657677879, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 29, \"sex\": \"male\", \"area\": \"北京\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 979897776, \"nickname\": \"W\"}, \"message\": [{\"text\": \"可以有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 979897776, \"group_id\": 828816138, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"pytorch/django/vue技术交流\", \"message_id\": \"MWa7CjpoDbAAAHr2Hd7YLGLOKDcB\", \"raw_message\": \"可以有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-13 02:04:39',NULL),(547,'202271310435183','{\"seq\": 31477, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2079920529, \"time\": 1657677875, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 29, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 979897776, \"nickname\": \"W\"}, \"message\": [{\"text\": \"有大佬帮忙处理下 递归查询某节点下的所有子节点\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 979897776, \"group_id\": 828816138, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"pytorch/django/vue技术交流\", \"message_id\": \"MWa7CjpoDbAAAHr1e/kRkWLOKDMB\", \"raw_message\": \"有大佬帮忙处理下 递归查询某节点下的所有子节点\", \"message_type\": \"group\"}','帮忙',1,'2022-07-13 02:04:35',NULL),(548,'20227131062122','{\"seq\": 48990, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 168902042, \"time\": 1657677962, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"male\", \"area\": \"杭州\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 776189529, \"nickname\": \"颜军\"}, \"message\": [{\"text\": \"求助大佬们 这个ts报错怎么解决呀\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 776189529, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBS5DtlkAAL9eChE9mmLOKIoB\", \"raw_message\": \"求助大佬们 这个ts报错怎么解决呀\", \"message_type\": \"group\"}','求助',1,'2022-07-13 02:06:02',NULL),(549,'2022713101137172','{\"seq\": 1344445, \"atme\": false, \"font\": \"汉仪蝶语体简\", \"rand\": 1837338908, \"time\": 1657678297, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[交流]小谭\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1611235218, \"nickname\": \"By_小谭\"}, \"message\": [{\"text\": \"有偿解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1611235218, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcmAJf5IAFIO9bYORHGLOKdkB\", \"raw_message\": \"有偿解决\", \"message_type\": \"group\"}','有偿',1,'2022-07-13 02:11:37',NULL),(550,'202271310165151','{\"seq\": 1344466, \"atme\": false, \"font\": \"宋体\", \"rand\": 2121908603, \"time\": 1657678565, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"克罗地亚\", \"card\": \"SKY[交流]Rainbow\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 760241109, \"nickname\": \"RainBow\"}, \"message\": [{\"qq\": 1905376279, \"text\": \"@SKY[交流]小码哥\", \"type\": \"at\"}, {\"text\": \" 有解决问题的服务吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 760241109, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphci1QW9UAFIPSfnnBe2LOKuUB\", \"raw_message\": \"@SKY[交流]小码哥 有解决问题的服务吗\", \"message_type\": \"group\"}','解决问题',1,'2022-07-13 02:16:05',NULL),(551,'2022713102713171','{\"seq\": 162174, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 478328287, \"time\": 1657679233, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1577350959, \"nickname\": \"风霜何故\"}, \"message\": [{\"text\": \"全国首家APP免费开发,技术风投,战略合作。\\r行业内独角兽打造\\r帮助中小型企业互联网转型!\\r专业做软件开发\\r知识付费APP\\r教育平台APP\\r同城服务APP\\r社交直播APP\\r家政APP\\r悬赏任务发布APP\\r多用户商城APP\\r全行业APP平台定制开发\\r华为云信息安全服务\\r仿爱聊交友APP开发\\r三方支付接口\\r爱搭支付对接\\r微信:YIZHIAINI-ZSJ\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1577350959, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O414Edy8AAnl+HIK132LOLYEB\", \"raw_message\": \"全国首家APP免费开发,技术风投,战略合作。\\r行业内独角兽打造\\r帮助中小型企业互联网转型!\\r专业做软件开发\\r知识付费APP\\r教育平台APP\\r同城服务APP\\r社交直播APP\\r家政APP\\r悬赏任务发布APP\\r多用户商城APP\\r全行业APP平台定制开发\\r华为云信息安全服务\\r仿爱聊交友APP开发\\r三方支付接口\\r爱搭支付对接\\r微信:YIZHIAINI-ZSJ\", \"message_type\": \"group\"}','付费',1,'2022-07-13 02:27:13',NULL),(552,'2022713103810116','{\"seq\": 1344538, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3394443813, \"time\": 1657679890, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"male\", \"area\": \"合肥\", \"card\": \"SKY[黑心]柚子\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2410633923, \"nickname\": \"黑心柚子\"}, \"message\": [{\"text\": \"以前我会骂花钱去培训的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2410633923, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphco+vWsMAFIQaylMaJWLOMBIB\", \"raw_message\": \"以前我会骂花钱去培训的\", \"message_type\": \"group\"}','花钱',1,'2022-07-13 02:38:10',NULL),(553,'2022713104019106','{\"seq\": 3683, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2525482736, \"time\": 1657680019, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 30, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2149095612, \"nickname\": \"letsbehappy\"}, \"source\": {\"seq\": 3681, \"rand\": 340227248, \"time\": 1657679869, \"message\": \" @letsbehappy 这个项目就是啊,还去哪里找?\", \"user_id\": 56222194}, \"message\": [{\"qq\": 56222194, \"text\": \"@稻草人\", \"type\": \"at\"}, {\"text\": \" 我需要人帮忙 搞定哇\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2149095612, \"group_id\": 820320773, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE-JS-手机控制\", \"message_id\": \"MOUaBYAYmLwAAA5jlofO8GLOMJMB\", \"raw_message\": \"@稻草人 我需要人帮忙 搞定哇\", \"message_type\": \"group\"}','帮忙',1,'2022-07-13 02:40:19',NULL),(554,'2022713104847119','{\"seq\": 285550, \"atme\": false, \"font\": \"宋体\", \"rand\": 1686414804, \"time\": 1657680527, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"北京\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1069038952, \"nickname\": \"小小\"}, \"message\": [{\"text\": \"我手里有一个angular项目,想替换模版,有擅长这方面的吗?有偿服务\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1069038952, \"group_id\": 316911865, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"ng-alain\", \"message_id\": \"EuOw+T+4PWgABFtuZISl1GLOMo8B\", \"raw_message\": \"我手里有一个angular项目,想替换模版,有擅长这方面的吗?有偿服务\", \"message_type\": \"group\"}','有偿',1,'2022-07-13 02:48:47',NULL),(555,'202271310501142','{\"seq\": 49291, \"atme\": false, \"font\": \"宋体\", \"rand\": 117312822, \"time\": 1657680601, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"冰岛\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 342240222, \"nickname\": \"牙牙莓\"}, \"message\": [{\"text\": \"这种实习经验没什么帮助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 342240222, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBRRmK94AAMCLBv4NNmLOMtkB\", \"raw_message\": \"这种实习经验没什么帮助\", \"message_type\": \"group\"}','帮助',1,'2022-07-13 02:50:01',NULL),(556,'2022713105521129','{\"seq\": 391087, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3420638049, \"time\": 1657680921, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"three.js学习中\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1500549684, \"nickname\": \"本格\"}, \"message\": [{\"text\": \"直接根源上解决问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1500549684, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h61lwkjQABfevy+LLYWLONBkB\", \"raw_message\": \"直接根源上解决问题\", \"message_type\": \"group\"}','解决问题',1,'2022-07-13 02:55:21',NULL),(557,'2022713112448154','{\"seq\": 125125, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3339958702, \"time\": 1657682688, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 32, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 5, \"title\": \"\", \"user_id\": 2751251895, \"nickname\": \"启明星\"}, \"message\": [{\"text\": \"https://video-react.js.org/components/player/ ts+函数组件 高手,帮我转个组件了,付费(我ts新手 写了几次不成功)\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2751251895, \"group_id\": 939900655, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue/react/uniapp前端后端\", \"message_id\": \"OAW+76P8xbcAAejFxxO5rmLOOwAB\", \"raw_message\": \"https://video-react.js.org/components/player/ ts+函数组件 高手,帮我转个组件了,付费(我ts新手 写了几次不成功)\", \"message_type\": \"group\"}','付费',1,'2022-07-13 03:24:48',NULL),(558,'2022713112952110','{\"seq\": 173911, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1411055663, \"time\": 1657682992, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 5, \"title\": \"\", \"user_id\": 3608339690, \"nickname\": \"Guo\"}, \"message\": [{\"text\": \"不过还是有很多好心的大佬免费帮忙的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3608339690, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIdcS5OoAAqdXVBsAL2LOPDAB\", \"raw_message\": \"不过还是有很多好心的大佬免费帮忙的\", \"message_type\": \"group\"}','帮忙',1,'2022-07-13 03:29:52',NULL),(559,'2022713113954110','{\"seq\": 49689, \"atme\": false, \"font\": \"宋体\", \"rand\": 931945817, \"time\": 1657683594, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 847705522, \"nickname\": \"。。。\"}, \"message\": [{\"text\": \"掏钱去除加载\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 847705522, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBTKG9bIAAMIZN4xdWWLOPooB\", \"raw_message\": \"掏钱去除加载\", \"message_type\": \"group\"}','掏钱',1,'2022-07-13 03:39:54',NULL),(560,'2022713115042143','{\"seq\": 1344970, \"atme\": false, \"font\": \"汉仪蝶语体简\", \"rand\": 1361240510, \"time\": 1657684242, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[交流]小谭\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1611235218, \"nickname\": \"By_小谭\"}, \"message\": [{\"text\": \"有偿解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1611235218, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcmAJf5IAFIXKUSLhvmLOQRIB\", \"raw_message\": \"有偿解决\", \"message_type\": \"group\"}','有偿',1,'2022-07-13 03:50:42',NULL),(561,'202271312146150','{\"seq\": 1344989, \"atme\": false, \"font\": \"宋体\", \"rand\": 1576109891, \"time\": 1657685646, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[交流]夜梦\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2540155530, \"nickname\": \"夜梦\"}, \"message\": [{\"text\": \"百度可以帮忙\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2540155530, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcpdnsooAFIXdXfGHQ2LORo4B\", \"raw_message\": \"百度可以帮忙\", \"message_type\": \"group\"}','帮忙',1,'2022-07-13 04:14:06',NULL),(562,'2022713121359140','{\"seq\": 1344988, \"atme\": false, \"font\": \"宋体\", \"rand\": 1018431922, \"time\": 1657685639, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"female\", \"area\": \"大连\", \"card\": \"SKY[交流]安安\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3125272659, \"nickname\": \"安安\"}, \"message\": [{\"text\": \"有人可以帮忙吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3125272659, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcrpH4FMAFIXcPLQJsmLORocB\", \"raw_message\": \"有人可以帮忙吗\", \"message_type\": \"group\"}','帮忙',1,'2022-07-13 04:13:59',NULL),(563,'2022713122416181','{\"seq\": 12267, \"atme\": false, \"font\": \"宋体\", \"rand\": 806569148, \"time\": 1657686256, \"atall\": true, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 36, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"admin\", \"level\": 5, \"title\": \"\", \"user_id\": 490765403, \"nickname\": \"有问题.有需求.\"}, \"message\": [{\"qq\": \"all\", \"text\": \"@全体成员\", \"type\": \"at\"}, {\"text\": \" mfc有接单的吗?加我vx 15323316397\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 490765403, \"group_id\": 773783754, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"极速帮程序员外包\", \"message_id\": \"Lh8Ayh1AfFsAAC/rMBNEvGLOSPAB\", \"raw_message\": \"@全体成员 mfc有接单的吗?加我vx 15323316397\", \"message_type\": \"group\"}','有接单的',1,'2022-07-13 04:24:16',NULL),(564,'2022713141337161','{\"seq\": 162179, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3200817885, \"time\": 1657692816, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"female\", \"area\": \"无锡\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1214880285, \"nickname\": \"厦门软件开发\"}, \"message\": [{\"text\": \"Python,java,c#简易程序, 仿站,小型网站定制开发 后端定制, php, Springboot API接口开发,有需求的可联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1214880285, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O40hpmh0AAnmDvsia3WLOYpAB\", \"raw_message\": \"Python,java,c#简易程序, 仿站,小型网站定制开发 后端定制, php, Springboot API接口开发,有需求的可联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-13 06:13:37',NULL),(565,'2022713141956168','{\"seq\": 391363, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2993476490, \"time\": 1657693195, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"male\", \"area\": \"上海\", \"card\": \"上海[前端]-初心\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1535392261, \"nickname\": \"初心\"}, \"message\": [{\"text\": \"我感觉只有被骗吧 说是有偿问问题 解决之后人没了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1535392261, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h61uEOgUABfjDsmzTimLOZAsB\", \"raw_message\": \"我感觉只有被骗吧 说是有偿问问题 解决之后人没了\", \"message_type\": \"group\"}','有偿',1,'2022-07-13 06:19:56',NULL),(566,'202271314216102','{\"seq\": 1345354, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 165506758, \"time\": 1657693265, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"male\", \"area\": \"合肥\", \"card\": \"SKY[黑心]柚子\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2410633923, \"nickname\": \"黑心柚子\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/2410633923/2013934898-2723234843-FB425B39F0C57054DC25973076099A93/0?term=2\", \"file\": \"fb425b39f0c57054dc25973076099a934065-391-45.png\", \"type\": \"image\", \"asface\": false}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2410633923/2013934898-2358789839-B64C5582A6CB23AD821FC59F4EA54698/0?term=2\", \"file\": \"b64c5582a6cb23ad821fc59f4ea546982115-204-40.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"兄弟们,帮忙看看定位会不会出问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2410633923, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphco+vWsMAFIdKCd1uxmLOZFEB\", \"raw_message\": \"[图片][图片]兄弟们,帮忙看看定位会不会出问题\", \"message_type\": \"group\"}','帮忙',1,'2022-07-13 06:21:06',NULL),(567,'2022713142457118','{\"seq\": 391369, \"atme\": false, \"font\": \"宋体\", \"rand\": 2062886401, \"time\": 1657693496, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"石家庄\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2861759415, \"nickname\": \"ぺ嗳ズDe寳贝\"}, \"message\": [{\"text\": \"解决问题还收费吗?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2861759415, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66qS+7cABfjJevUmAWLOZTgB\", \"raw_message\": \"解决问题还收费吗?\", \"message_type\": \"group\"}','解决问题',1,'2022-07-13 06:24:57',NULL),(568,'2022713142629183','{\"seq\": 391372, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2176215, \"time\": 1657693588, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"male\", \"area\": \"上海\", \"card\": \"上海[前端]-李兴达\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1535392261, \"nickname\": \"初心\"}, \"message\": [{\"text\": \"有的时候 直接帮写代码 解决问题 多多少少 买瓶水意思意思嘛\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1535392261, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h61uEOgUABfjMACE012LOZZQB\", \"raw_message\": \"有的时候 直接帮写代码 解决问题 多多少少 买瓶水意思意思嘛\", \"message_type\": \"group\"}','解决问题',1,'2022-07-13 06:26:29',NULL),(569,'2022713142740139','{\"seq\": 391383, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3263924605, \"time\": 1657693660, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"male\", \"area\": \"上海\", \"card\": \"上海[前端]-李兴达\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1535392261, \"nickname\": \"初心\"}, \"message\": [{\"text\": \"就先解决 在付费\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1535392261, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h61uEOgUABfjXwouJfWLOZdwB\", \"raw_message\": \"就先解决 在付费\", \"message_type\": \"group\"}','付费',1,'2022-07-13 06:27:40',NULL),(570,'2022713142851113','{\"seq\": 57439, \"atme\": false, \"font\": \"宋体\", \"rand\": 986886022, \"time\": 1657693730, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1311784385, \"nickname\": \"谜\"}, \"message\": [{\"text\": \"帮帮忙\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1311784385, \"group_id\": 279707495, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端(Html,Vue,React)4\", \"message_id\": \"EKv/Z04wPcEAAOBfOtKvhmLOZiIB\", \"raw_message\": \"帮帮忙\", \"message_type\": \"group\"}','帮忙',1,'2022-07-13 06:28:51',NULL),(571,'2022713145720147','{\"seq\": 391420, \"atme\": false, \"font\": \"汉仪南宫体简\", \"rand\": 767299224, \"time\": 1657695439, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"阿尔巴尼亚\", \"card\": \"前端小白\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1446917918, \"nickname\": \"[$ÿĀ\\u001c\\u0001]终憾[$ÿĀ\\u001c\\u0001]\"}, \"message\": [{\"text\": \"朋友们谁接单呢\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1446917918, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h61Y+Nx4ABfj8LbwOmGLObM8B\", \"raw_message\": \"朋友们谁接单呢\", \"message_type\": \"group\"}','谁接单',1,'2022-07-13 06:57:20',NULL),(572,'2022713145838133','{\"seq\": 391424, \"atme\": false, \"font\": \"宋体\", \"rand\": 140243414, \"time\": 1657695517, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 120, \"sex\": \"male\", \"area\": \"昆明\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1524896717, \"nickname\": \"一个p标签\"}, \"message\": [{\"text\": \"群里本来就是互相帮助的,你可以先说说你的需求/捂脸\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1524896717, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h61rkE80ABfkACFvx1mLObR0B\", \"raw_message\": \"群里本来就是互相帮助的,你可以先说说你的需求/捂脸\", \"message_type\": \"group\"}','帮助',1,'2022-07-13 06:58:38',NULL),(573,'2022713151330171','{\"seq\": 391522, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1510779873, \"time\": 1657696409, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2578804577, \"nickname\": \"李晨\"}, \"message\": [{\"text\": \"有没有大佬帮忙看一下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2578804577, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h65m1b2EABfliWgyr4WLOcJkB\", \"raw_message\": \"有没有大佬帮忙看一下\", \"message_type\": \"group\"}','帮忙',1,'2022-07-13 07:13:30',NULL),(574,'2022713151531185','{\"seq\": 1345598, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3306642093, \"time\": 1657696530, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"邵阳\", \"card\": \"SKY[交流]摆烂\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1835239728, \"nickname\": \"해가 또 떠오른다?\"}, \"message\": [{\"text\": \"有偿吗\", \"type\": \"text\"}, {\"id\": 101, \"text\": \"坏笑\", \"type\": \"face\"}], \"self_id\": 1841031740, \"user_id\": 1835239728, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcm1jiTAAFIg+xRdarWLOcRIB\", \"raw_message\": \"有偿吗[坏笑]\", \"message_type\": \"group\"}','有偿',1,'2022-07-13 07:15:31',NULL),(575,'2022713151550182','{\"seq\": 391537, \"atme\": false, \"font\": \"宋体\", \"rand\": 136386377, \"time\": 1657696549, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"江苏\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2379234856, \"nickname\": \"zyzq\"}, \"message\": [{\"text\": \"群友们帮帮忙\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2379234856, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h643QPigABflxCCEXSWLOcSUB\", \"raw_message\": \"群友们帮帮忙\", \"message_type\": \"group\"}','帮忙',1,'2022-07-13 07:15:50',NULL),(576,'202271315283162','{\"seq\": 517737, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2245290053, \"time\": 1657697283, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2523958182, \"nickname\": \"云缠绵\"}, \"message\": [{\"text\": \"没人帮忙呀\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2523958182, \"group_id\": 538246944, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JS、Vue、Element-UI技术栈\", \"message_id\": \"IBT/IJZwi6YAB+ZphdRoRWLOdAMB\", \"raw_message\": \"没人帮忙呀\", \"message_type\": \"group\"}','帮忙',1,'2022-07-13 07:28:03',NULL),(577,'2022713153444105','{\"seq\": 50154, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 299975739, \"time\": 1657697683, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 281462094, \"nickname\": \"木衫\"}, \"message\": [{\"text\": \"有接单的吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 281462094, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBRDGxU4AAMPqEeFEO2LOdZMB\", \"raw_message\": \"有接单的吗\", \"message_type\": \"group\"}','有接单的',1,'2022-07-13 07:34:44',NULL),(578,'2022713154036180','{\"seq\": 173977, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2899656444, \"time\": 1657698036, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 281462094, \"nickname\": \"木衫\"}, \"message\": [{\"text\": \"有接单的加下我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 281462094, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIRDGxU4AAqeZrNU+/GLOdvQB\", \"raw_message\": \"有接单的加下我\", \"message_type\": \"group\"}','有接单的',1,'2022-07-13 07:40:36',NULL),(579,'2022713154137167','{\"seq\": 11532, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1367581215, \"time\": 1657698097, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 281462094, \"nickname\": \"木衫\"}, \"message\": [{\"text\": \"有接单的加下我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 281462094, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaBDGxU4AAC0MUYOiH2LOdzEB\", \"raw_message\": \"有接单的加下我\", \"message_type\": \"group\"}','有接单的',1,'2022-07-13 07:41:37',NULL),(580,'202271315450101','{\"seq\": 71769, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 909002695, \"time\": 1657698299, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 281462094, \"nickname\": \"木衫\"}, \"message\": [{\"text\": \"有接单的吗,加下我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 281462094, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdRDGxU4AARhZNi5Hx2LOd/sB\", \"raw_message\": \"有接单的吗,加下我\", \"message_type\": \"group\"}','有接单的',1,'2022-07-13 07:45:00',NULL),(581,'2022713154647123','{\"seq\": 4600, \"atme\": false, \"font\": \"宋体\", \"rand\": 1167564404, \"time\": 1657698406, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 37, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2802182735, \"nickname\": \"单片机设计者\"}, \"message\": [{\"text\": \"\\n各位老板,嵌入式工程师私人接单:接各类stm32 51单片机arm嵌入式开发 抄写原理图 智能产品 娱乐产品 开发 有偿技术指导 小批量供货 需要的私聊\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2802182735, \"group_id\": 124041790, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React外包交流群\", \"message_id\": \"B2S6PqcF6k8AABH4RZeedGLOeGYB\", \"raw_message\": \"\\n各位老板,嵌入式工程师私人接单:接各类stm32 51单片机arm嵌入式开发 抄写原理图 智能产品 娱乐产品 开发 有偿技术指导 小批量供货 需要的私聊\", \"message_type\": \"group\"}','有偿',1,'2022-07-13 07:46:47',NULL),(582,'2022713155934134','{\"seq\": 5706, \"atme\": false, \"font\": \"宋体\", \"rand\": 1657723680, \"time\": 1657699173, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"unknown\", \"area\": \"越南\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1663875617, \"nickname\": \"一手域名-中间商可谈价\"}, \"message\": [{\"text\": \"特价出阿里云备案cn,需要联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1663875617, \"group_id\": 831071233, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"开发\", \"message_id\": \"MYkkAWMsuiEAABZKYs7bIGLOe2UB\", \"raw_message\": \"特价出阿里云备案cn,需要联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-13 07:59:34',NULL),(583,'2022713161424157','{\"seq\": 2532, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1444176468, \"time\": 1657700063, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"female\", \"area\": \"西藏\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1653419595, \"nickname\": \"sunshine\"}, \"message\": [{\"text\": \"愿意付费请教\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1653419595, \"group_id\": 565259217, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vite插件开发技术\", \"message_id\": \"IbEr0WKNLksAAAnkVhRiVGLOft8B\", \"raw_message\": \"愿意付费请教\", \"message_type\": \"group\"}','付费',1,'2022-07-13 08:14:24',NULL),(584,'202271316258150','{\"seq\": 11542, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1232830193, \"time\": 1657700707, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 1, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1757849405, \"nickname\": \"以吻封艱\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/1757849405/698722664-2940440732-6570487B74ECD2ADEB47F29DB800A489/0?term=2\", \"file\": \"6570487b74ecd2adeb47f29db800a48929141-1905-73.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"uniapp预览pdf这个文件一直打不开,大佬们帮忙看一下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1757849405, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaGjGpz0AAC0WSXt+8WLOgWMB\", \"raw_message\": \"[图片]uniapp预览pdf这个文件一直打不开,大佬们帮忙看一下\", \"message_type\": \"group\"}','帮忙',1,'2022-07-13 08:25:08',NULL),(585,'202271316533188','{\"seq\": 5707, \"atme\": false, \"font\": \"宋体\", \"rand\": 1657716297, \"time\": 1657702382, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"unknown\", \"area\": \"越南\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1663875617, \"nickname\": \"一手域名-中间商可谈价\"}, \"message\": [{\"text\": \"特价出阿里云备案cn,需要联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1663875617, \"group_id\": 831071233, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"开发\", \"message_id\": \"MYkkAWMsuiEAABZLYs6+SWLOh+4B\", \"raw_message\": \"特价出阿里云备案cn,需要联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-13 08:53:03',NULL),(586,'202271316543140','{\"seq\": 13438, \"atme\": false, \"font\": \"宋体\", \"rand\": 1714316116, \"time\": 1657702443, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 31, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1024382532, \"nickname\": \"APP开发即时通讯\"}, \"message\": [{\"text\": \"本公司承接《源码➕搭建》\\n知识付费,教育,外卖跑腿,房产家政,同城服务,行业资讯,直播购物,娱乐直播,社交直播,相亲交友,区块链,共享,餐饮,盲盒,打车,物流,商城(多商城单商城),全行业APP平台定制开发。\\n咨询电话:15298662109(同微信)\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1024382532, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VD0O1kQAADR+Zi5jVGLOiCsB\", \"raw_message\": \"本公司承接《源码➕搭建》\\n知识付费,教育,外卖跑腿,房产家政,同城服务,行业资讯,直播购物,娱乐直播,社交直播,相亲交友,区块链,共享,餐饮,盲盒,打车,物流,商城(多商城单商城),全行业APP平台定制开发。\\n咨询电话:15298662109(同微信)\", \"message_type\": \"group\"}','付费',1,'2022-07-13 08:54:03',NULL),(587,'2022713165647188','{\"seq\": 1477, \"atme\": false, \"font\": \"宋体\", \"rand\": 551228811, \"time\": 1657702607, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1005518488, \"nickname\": \"Aspire\"}, \"message\": [{\"text\": \"那位大神帮忙解答下呗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1005518488, \"group_id\": 701493338, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue3/Nuxt开发交流\", \"message_id\": \"Kc/wWjvu/pgAAAXFINsVi2LOiM8B\", \"raw_message\": \"那位大神帮忙解答下呗\", \"message_type\": \"group\"}','帮忙',1,'2022-07-13 08:56:47',NULL),(588,'2022713165846105','{\"seq\": 30648, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 2096268750, \"time\": 1657702726, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1005518488, \"nickname\": \"Aspire\"}, \"message\": [{\"text\": \"有哪位大神 能帮忙解答下 vue项目迁移nuxt route如何处理\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1005518488, \"group_id\": 486273737, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue/nuxt/angular/java/react/we\", \"message_id\": \"HPvyyTvu/pgAAHe4fPKFzmLOiUYB\", \"raw_message\": \"有哪位大神 能帮忙解答下 vue项目迁移nuxt route如何处理\", \"message_type\": \"group\"}','帮忙',1,'2022-07-13 08:58:46',NULL),(589,'202271317110136','{\"seq\": 71894, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2878004986, \"time\": 1657702869, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1506537034, \"nickname\": \"聪明蛋☞\"}, \"message\": [{\"text\": \"有付费的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1506537034, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdVnL7koAARjWq4re+mLOidUB\", \"raw_message\": \"有付费的\", \"message_type\": \"group\"}','付费',1,'2022-07-13 09:01:10',NULL),(590,'202271317154101','{\"seq\": 13441, \"atme\": false, \"font\": \"宋体\", \"rand\": 1512626074, \"time\": 1657702913, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1024382532, \"nickname\": \"APP开发即时通讯\"}, \"message\": [{\"text\": \"本公司承接《源码➕搭建》\\n知识付费,教育,外卖跑腿,房产家政,同城服务,行业资讯,直播购物,娱乐直播,社交直播,相亲交友,区块链,共享,餐饮,盲盒,打车,物流,商城(多商城单商城),全行业APP平台定制开发。\\n咨询电话:15298662109(同微信)\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1024382532, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VD0O1kQAADSBWijXmmLOigEB\", \"raw_message\": \"本公司承接《源码➕搭建》\\n知识付费,教育,外卖跑腿,房产家政,同城服务,行业资讯,直播购物,娱乐直播,社交直播,相亲交友,区块链,共享,餐饮,盲盒,打车,物流,商城(多商城单商城),全行业APP平台定制开发。\\n咨询电话:15298662109(同微信)\", \"message_type\": \"group\"}','付费',1,'2022-07-13 09:01:54',NULL),(591,'2022713171212152','{\"seq\": 13444, \"atme\": false, \"font\": \"宋体\", \"rand\": 312282705, \"time\": 1657703531, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 31, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1024382532, \"nickname\": \"APP开发即时通讯\"}, \"message\": [{\"text\": \"本公司承接《源码➕搭建》\\n知识付费,教育,外卖跑腿,房产家政,同城服务,行业资讯,直播购物,娱乐直播,社交直播,相亲交友,区块链,共享,餐饮,盲盒,打车,物流,商城(多商城单商城),全行业APP平台定制开发。\\n咨询电话:15298662109(同微信)\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1024382532, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VD0O1kQAADSEEp0OUWLOjGsB\", \"raw_message\": \"本公司承接《源码➕搭建》\\n知识付费,教育,外卖跑腿,房产家政,同城服务,行业资讯,直播购物,娱乐直播,社交直播,相亲交友,区块链,共享,餐饮,盲盒,打车,物流,商城(多商城单商城),全行业APP平台定制开发。\\n咨询电话:15298662109(同微信)\", \"message_type\": \"group\"}','付费',1,'2022-07-13 09:12:12',NULL),(592,'202271317128174','{\"seq\": 60438, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3115721657, \"time\": 1657703527, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"female\", \"area\": \"重庆\", \"card\": \"ios签名秋秋\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2554982175, \"nickname\": \"小苦呱。\"}, \"message\": [{\"text\": \"需要签名的联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2554982175, \"group_id\": 955416469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小程序app开发接单群\", \"message_id\": \"OPJ/lZhJ7x8AAOwWubYjuWLOjGcB\", \"raw_message\": \"需要签名的联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-13 09:12:08',NULL),(593,'2022713171344109','{\"seq\": 50221, \"atme\": false, \"font\": \"宋体\", \"rand\": 2024713376, \"time\": 1657703623, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2690866872, \"nickname\": \"fishx𓆟\"}, \"message\": [{\"text\": \"WPS将彻底开启付费使用模式\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2690866872, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBaBjXrgAAMQteK6soGLOjMcB\", \"raw_message\": \"WPS将彻底开启付费使用模式\", \"message_type\": \"group\"}','付费',1,'2022-07-13 09:13:44',NULL),(594,'202271317251128','{\"seq\": 33557, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1169104585, \"time\": 1657704300, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIMVRa8eyWLOj2wB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-13 09:25:01',NULL),(595,'2022713172514150','{\"seq\": 6379, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 792722905, \"time\": 1657704313, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABjrLz/92WLOj3kB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-13 09:25:14',NULL),(596,'202271317355119','{\"seq\": 25831, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3813918988, \"time\": 1657704904, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 119, \"sex\": \"female\", \"area\": \"乌兰察布\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 489285877, \"nickname\": \"圥\"}, \"message\": [{\"text\": \"群里有没有接单的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 489285877, \"group_id\": 858753621, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"jquery/css/javascript/js/vue/t\", \"message_id\": \"My+KVR0p6PUAAGTn41PJDGLOkcgB\", \"raw_message\": \"群里有没有接单的\", \"message_type\": \"group\"}','有接单的',1,'2022-07-13 09:35:05',NULL),(597,'202271317415172','{\"seq\": 96904, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4046552524, \"time\": 1657705264, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"female\", \"area\": \"运城\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1011620727, \"nickname\": \"悬崖边\"}, \"message\": [{\"text\": \"求助 我想让底下这块内容覆盖到地图上\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1011620727, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp9zxMG3cAAXqI8TF9zGLOkzAB\", \"raw_message\": \"求助 我想让底下这块内容覆盖到地图上\", \"message_type\": \"group\"}','求助',1,'2022-07-13 09:41:05',NULL),(598,'2022713174116166','{\"seq\": 5708, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1911464613, \"time\": 1657705275, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 38, \"sex\": \"male\", \"area\": \"\", \"card\": \"咕噜企业签名分发-绿标(免费领五百点数)\", \"role\": \"admin\", \"level\": 1, \"title\": \"\", \"user_id\": 70198001, \"nickname\": \"咕噜企业签名分发-鸭王\"}, \"message\": [{\"text\": \"兄弟们快点漂吧这本企业签名证书活了7天了再不搞就快掉了!又不让你花钱快找我白嫖!\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 70198001, \"group_id\": 831071233, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"开发\", \"message_id\": \"MYkkAQQvIvEAABZMce6ipWLOkzsB\", \"raw_message\": \"兄弟们快点漂吧这本企业签名证书活了7天了再不搞就快掉了!又不让你花钱快找我白嫖!\", \"message_type\": \"group\"}','花钱',1,'2022-07-13 09:41:16',NULL),(599,'2022713174422144','{\"seq\": 5709, \"atme\": false, \"font\": \"宋体\", \"rand\": 1657726226, \"time\": 1657705461, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"unknown\", \"area\": \"越南\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1663875617, \"nickname\": \"一手域名-中间商可谈价\"}, \"message\": [{\"text\": \"特价出阿里云备案cn,需要联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1663875617, \"group_id\": 831071233, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"开发\", \"message_id\": \"MYkkAWMsuiEAABZNYs7lEmLOk/UB\", \"raw_message\": \"特价出阿里云备案cn,需要联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-13 09:44:22',NULL),(600,'2022713174741127','{\"seq\": 1346336, \"atme\": false, \"font\": \"黑体\", \"rand\": 2497353776, \"time\": 1657705660, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 46, \"sex\": \"male\", \"area\": \"北京\", \"card\": \"SKY[交流]老周\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 78122398, \"nickname\": \"78122398\"}, \"message\": [{\"qq\": 1634350856, \"text\": \"@SKY[交流]若常\", \"type\": \"at\"}, {\"text\": \" 很实用。能解决问题就行\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 78122398, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcgSoDZ4AFIsglNqYMGLOlLwB\", \"raw_message\": \"@SKY[交流]若常 很实用。能解决问题就行\", \"message_type\": \"group\"}','解决问题',1,'2022-07-13 09:47:41',NULL),(601,'2022713175243136','{\"seq\": 13446, \"atme\": false, \"font\": \"宋体\", \"rand\": 514384514, \"time\": 1657705962, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2339510255, \"nickname\": \"勿念.\"}, \"message\": [{\"text\": \"出售带分销制度的商城系统\\n三级分销+平级奖+级差奖+业绩分红+独立佣金\\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2339510255, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VItyF+8AADSGHqjigmLOleoB\", \"raw_message\": \"出售带分销制度的商城系统\\n三级分销+平级奖+级差奖+业绩分红+独立佣金\\n小程序 PC网页 APP三端齐全,有需要的老板请联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-13 09:52:43',NULL),(602,'2022713175412128','{\"seq\": 1346424, \"atme\": false, \"font\": \"宋体\", \"rand\": 994884987, \"time\": 1657706051, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[交流]若常\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1634350856, \"nickname\": \"若常\"}, \"message\": [{\"text\": \"不发报错和代码,怎么解决问题/捂脸\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1634350856, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcmFqNwgAFIt4O0y9e2LOlkMB\", \"raw_message\": \"不发报错和代码,怎么解决问题/捂脸\", \"message_type\": \"group\"}','解决问题',1,'2022-07-13 09:54:12',NULL),(603,'202271318446140','{\"seq\": 25845, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 972582106, \"time\": 1657706685, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 119, \"sex\": \"female\", \"area\": \"乌兰察布\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 489285877, \"nickname\": \"圥\"}, \"message\": [{\"text\": \"还有没有接单的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 489285877, \"group_id\": 858753621, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"jquery/css/javascript/js/vue/t\", \"message_id\": \"My+KVR0p6PUAAGT1Ofhs2mLOmL0B\", \"raw_message\": \"还有没有接单的\", \"message_type\": \"group\"}','有接单的',1,'2022-07-13 10:04:46',NULL),(604,'2022713181935157','{\"seq\": 276261, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3096415288, \"time\": 1657707575, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 56, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1403162905, \"nickname\": \"🔨\"}, \"message\": [{\"text\": \"有没有大佬帮忙看一下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1403162905, \"group_id\": 692522608, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端Vue开发程序员贰\", \"message_id\": \"KUcOcFOikRkABDcluI+MOGLOnDcB\", \"raw_message\": \"有没有大佬帮忙看一下\", \"message_type\": \"group\"}','帮忙',1,'2022-07-13 10:19:35',NULL),(605,'2022713183337150','{\"seq\": 13448, \"atme\": false, \"font\": \"宋体\", \"rand\": 1657713598, \"time\": 1657708416, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 43, \"sex\": \"male\", \"area\": \"嘉义县\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2647798877, \"nickname\": \"易新科技\"}, \"message\": [{\"text\": \"普通备案cn/com到货,需要联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2647798877, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VJ3SNF0AADSIYs6zvmLOn4AB\", \"raw_message\": \"普通备案cn/com到货,需要联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-13 10:33:37',NULL),(606,'2022713222418164','{\"seq\": 11604, \"atme\": false, \"font\": \"宋体\", \"rand\": 2089609924, \"time\": 1657722258, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 31, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 574846785, \"nickname\": \"Happy Master\"}, \"message\": [{\"qq\": 852838543, \"text\": \"@晚风\", \"type\": \"at\"}, {\"text\": \" 用花钱买开发账号吗?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 574846785, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaCJDd0EAAC1UfIzqxGLO1ZIB\", \"raw_message\": \"@晚风 用花钱买开发账号吗?\", \"message_type\": \"group\"}','花钱',1,'2022-07-13 14:24:18',NULL),(607,'202271322299174','{\"seq\": 1347583, \"atme\": false, \"font\": \"宋体\", \"rand\": 1533225692, \"time\": 1657722548, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[心血]来潮\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 758768158, \"nickname\": \" \"}, \"message\": [{\"text\": \"想帮忙看的话\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 758768158, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphci054h4AFI//W2Mq3GLO1rQB\", \"raw_message\": \"想帮忙看的话\", \"message_type\": \"group\"}','帮忙',1,'2022-07-13 14:29:09',NULL),(608,'2022713225616122','{\"seq\": 13464, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4145036859, \"time\": 1657724175, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2339510255, \"nickname\": \"勿念.\"}, \"message\": [{\"text\": \"出售带分销制度的商城系统\\r三级分销+平级奖+级差奖+业绩分红+独立佣金\\r小程序 PC网页 APP三端齐全,有需要的老板请联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2339510255, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VItyF+8AADSY9xA+O2LO3Q8B\", \"raw_message\": \"出售带分销制度的商城系统\\r三级分销+平级奖+级差奖+业绩分红+独立佣金\\r小程序 PC网页 APP三端齐全,有需要的老板请联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-13 14:56:16',NULL),(609,'20227149230170','{\"seq\": 72043, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 799749731, \"time\": 1657761779, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"绍杰\"}, \"message\": [{\"text\": \"有解决不了的问题,给点好处可以帮忙解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1336322173, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdU+mqH0AARlrL6s2Y2LPb/MB\", \"raw_message\": \"有解决不了的问题,给点好处可以帮忙解决\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 01:23:00',NULL),(610,'202271492810154','{\"seq\": 392864, \"atme\": false, \"font\": \"宋体\", \"rand\": 1384868145, \"time\": 1657762088, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2696518872, \"nickname\": \"山河\"}, \"message\": [{\"text\": \"有接单的吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2696518872, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66C5nNgABf6gUotpMWLPcSgB\", \"raw_message\": \"有接单的吗\", \"message_type\": \"group\"}','有接单的',1,'2022-07-14 01:28:10',NULL),(611,'202271493316168','{\"seq\": 11729, \"atme\": false, \"font\": \"宋体\", \"rand\": 1959324092, \"time\": 1657762395, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2042273053, \"nickname\": \"虾米\"}, \"message\": [{\"text\": \"兄弟们 谁有卡密系统 生成密钥 然后有鉴权系统 开元最好 好用可以付费\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2042273053, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaHm6nR0AAC3RdMjpvGLPclsB\", \"raw_message\": \"兄弟们 谁有卡密系统 生成密钥 然后有鉴权系统 开元最好 好用可以付费\", \"message_type\": \"group\"}','付费',1,'2022-07-14 01:33:16',NULL),(612,'202271493343116','{\"seq\": 11731, \"atme\": false, \"font\": \"宋体\", \"rand\": 313356348, \"time\": 1657762422, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2042273053, \"nickname\": \"虾米\"}, \"message\": [{\"text\": \"兄弟们 谁有卡密系统 生成密钥 然后有鉴权系统 开元最好 好用可以付费\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2042273053, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaHm6nR0AAC3TEq1wPGLPcnYB\", \"raw_message\": \"兄弟们 谁有卡密系统 生成密钥 然后有鉴权系统 开元最好 好用可以付费\", \"message_type\": \"group\"}','付费',1,'2022-07-14 01:33:43',NULL),(613,'202271493343180','{\"seq\": 953069, \"atme\": false, \"font\": \"宋体\", \"rand\": 2143816559, \"time\": 1657762422, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2042273053, \"nickname\": \"虾米\"}, \"message\": [{\"text\": \"兄弟们 谁有卡密系统 生成密钥 然后有鉴权系统 开元最好 好用可以付费\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2042273053, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB3m6nR0ADortf8gLb2LPcnYB\", \"raw_message\": \"兄弟们 谁有卡密系统 生成密钥 然后有鉴权系统 开元最好 好用可以付费\", \"message_type\": \"group\"}','付费',1,'2022-07-14 01:33:43',NULL),(614,'202271493534143','{\"seq\": 72054, \"atme\": false, \"font\": \"宋体\", \"rand\": 1116728287, \"time\": 1657762533, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 285866058, \"nickname\": \"@王多余.\"}, \"message\": [{\"text\": \"谁有接单的群 艾特我一下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 285866058, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdREJ+EoAARl2Qo/r32LPcuUB\", \"raw_message\": \"谁有接单的群 艾特我一下\", \"message_type\": \"group\"}','有接单的',1,'2022-07-14 01:35:34',NULL),(615,'20227149419145','{\"seq\": 13476, \"atme\": false, \"font\": \"宋体\", \"rand\": 1657787222, \"time\": 1657762868, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 43, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2647798877, \"nickname\": \"易新科技\"}, \"message\": [{\"text\": \"普通备案cn/com到货,需要联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2647798877, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VJ3SNF0AADSkYs/TVmLPdDQB\", \"raw_message\": \"普通备案cn/com到货,需要联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-14 01:41:09',NULL),(616,'202271494832177','{\"seq\": 285600, \"atme\": false, \"font\": \"宋体\", \"rand\": 516754684, \"time\": 1657763311, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1363077894, \"nickname\": \"☀小胖子❃\"}, \"message\": [{\"qq\": 740439060, \"text\": \"@EK&1945VI明天\", \"type\": \"at\"}, {\"text\": \" 感谢你前天的帮助,问题已解决,是我自己的this指向错误造成的,我打印出this就突然明白了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1363077894, \"group_id\": 316911865, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"ng-alain\", \"message_id\": \"EuOw+VE+6wYABFugHs0M/GLPde8B\", \"raw_message\": \"@EK&1945VI明天 感谢你前天的帮助,问题已解决,是我自己的this指向错误造成的,我打印出this就突然明白了\", \"message_type\": \"group\"}','帮助',1,'2022-07-14 01:48:32',NULL),(617,'202271495351180','{\"seq\": 60457, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4149009083, \"time\": 1657763630, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 2, \"title\": \"\", \"user_id\": 1637458512, \"nickname\": \"白骑士(APP评测公司)\"}, \"message\": [{\"text\": \"您好,我这边有200个自然人测评用户,如果您的甲方需要APP自然人前、中、后期测评或者试玩服务可联系我,价格不贵,由甲方出,介绍生意可得返点15%,八月开始,可长期合作。\\r测评50元/25单起,200元可获万字、100条图文反馈。(帮助测评APP和游戏)\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1637458512, \"group_id\": 955416469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小程序app开发接单群\", \"message_id\": \"OPJ/lWGZolAAAOwp90zau2LPdy4B\", \"raw_message\": \"您好,我这边有200个自然人测评用户,如果您的甲方需要APP自然人前、中、后期测评或者试玩服务可联系我,价格不贵,由甲方出,介绍生意可得返点15%,八月开始,可长期合作。\\r测评50元/25单起,200元可获万字、100条图文反馈。(帮助测评APP和游戏)\", \"message_type\": \"group\"}','帮助',1,'2022-07-14 01:53:51',NULL),(618,'2022714101235134','{\"seq\": 162231, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2766326948, \"time\": 1657764754, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1577350959, \"nickname\": \"风霜何故\"}, \"message\": [{\"text\": \"全国首家APP免费开发,技术风投,战略合作。\\r行业内独角兽打造\\r帮助中小型企业互联网转型!\\r专业做软件开发\\r知识付费APP\\r教育平台APP\\r同城服务APP\\r社交直播APP\\r家政APP\\r悬赏任务发布APP\\r多用户商城APP\\r全行业APP平台定制开发\\r华为云信息安全服务\\r仿爱聊交友APP开发\\r三方支付接口\\r爱搭支付对接\\r微信:YIZHIAINI-ZSJ\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1577350959, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O414Edy8AAnm3pOLMpGLPe5IB\", \"raw_message\": \"全国首家APP免费开发,技术风投,战略合作。\\r行业内独角兽打造\\r帮助中小型企业互联网转型!\\r专业做软件开发\\r知识付费APP\\r教育平台APP\\r同城服务APP\\r社交直播APP\\r家政APP\\r悬赏任务发布APP\\r多用户商城APP\\r全行业APP平台定制开发\\r华为云信息安全服务\\r仿爱聊交友APP开发\\r三方支付接口\\r爱搭支付对接\\r微信:YIZHIAINI-ZSJ\", \"message_type\": \"group\"}','付费',1,'2022-07-14 02:12:35',NULL),(619,'2022714102242106','{\"seq\": 1348749, \"atme\": false, \"font\": \"宋体\", \"rand\": 990029871, \"time\": 1657765361, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[刚想]躺下\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2623415667, \"nickname\": \"刚想躺下\"}, \"message\": [{\"text\": \"想请教大家个问题,有大佬能帮忙解答下吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2623415667, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcpxeJXMAFJSNOwKoL2LPffEB\", \"raw_message\": \"想请教大家个问题,有大佬能帮忙解答下吗\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 02:22:42',NULL),(620,'2022714103723152','{\"seq\": 437971, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1361966012, \"time\": 1657766242, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"male\", \"area\": \"福州\", \"card\": \"砕月\", \"role\": \"admin\", \"level\": 1, \"title\": \"\", \"user_id\": 732832199, \"nickname\": \"砕けた月\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/732832199/4122041042-2773300150-F0662CF213CB38B99FC9D8EAC960DA69/0?term=2\", \"file\": \"f0662cf213cb38b99fc9d8eac960da695070-160-130.jpg\", \"type\": \"image\", \"asface\": true}, {\"text\": \"浪哥心碎了。帮忙解答还被骂。他闭群了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 732832199, \"group_id\": 232041042, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uView UI 官方10群\", \"message_id\": \"DdSqUiuuIccABq7TUS3zvGLPgWIB\", \"raw_message\": \"[动画表情]浪哥心碎了。帮忙解答还被骂。他闭群了\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 02:37:23',NULL),(621,'2022714103713114','{\"seq\": 13479, \"atme\": false, \"font\": \"宋体\", \"rand\": 1657780253, \"time\": 1657766232, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 43, \"sex\": \"male\", \"area\": \"嘉义县\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2647798877, \"nickname\": \"易新科技\"}, \"message\": [{\"text\": \"普通备案cn/com到货,需要联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2647798877, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VJ3SNF0AADSnYs+4HWLPgVgB\", \"raw_message\": \"普通备案cn/com到货,需要联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-14 02:37:13',NULL),(622,'202271411527104','{\"seq\": 50578, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2307670424, \"time\": 1657767925, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 29, \"sex\": \"male\", \"area\": \"汕头\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2244627756, \"nickname\": \"无解\"}, \"message\": [{\"text\": \"大佬可以帮忙解答下我的问题吗?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2244627756, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBYXKTSwAAMWSiYxBmGLPh/UB\", \"raw_message\": \"大佬可以帮忙解答下我的问题吗?\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 03:05:27',NULL),(623,'2022714112426140','{\"seq\": 336624, \"atme\": false, \"font\": \"宋体\", \"rand\": 62235755, \"time\": 1657769064, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"owner\", \"level\": 6, \"title\": \"管理员\", \"user_id\": 785606282, \"nickname\": \"、不是谁情愿就能够如愿 \"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/785606282/558925746-2441141983-D7E46DEBD691177E81199319DD63B064/0?term=2\", \"file\": \"d7e46debd691177e81199319dd63b06473241-2652-370.jpg\", \"type\": \"image\", \"asface\": false}, {\"text\": \"帮忙看个问题,这是啥报错啊\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 785606282, \"group_id\": 558925746, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue/javascript\", \"message_id\": \"IVCHsi7TZooABSLwA7Wka2LPjGgB\", \"raw_message\": \"[图片]帮忙看个问题,这是啥报错啊\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 03:24:26',NULL),(624,'2022714112635188','{\"seq\": 78291, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3522289157, \"time\": 1657769194, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"小布丁\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1585517965, \"nickname\": \"吾\"}, \"message\": [{\"text\": \"比如CSDN我给钱了 我就让CSDN搜索靠前 博客园掏钱了 我就让博客园搜索靠前?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1585517965, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE前端划水群\", \"message_id\": \"J/+MYF6BFY0AATHT0fHeBWLPjOoB\", \"raw_message\": \"比如CSDN我给钱了 我就让CSDN搜索靠前 博客园掏钱了 我就让博客园搜索靠前?\", \"message_type\": \"group\"}','掏钱',1,'2022-07-14 03:26:35',NULL),(625,'2022714115110135','{\"seq\": 33567, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1213031656, \"time\": 1657770669, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIMfSE1k6GLPkq0B\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 03:51:10',NULL),(626,'2022714115146172','{\"seq\": 6391, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 181025461, \"time\": 1657770705, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABj3Cso6tWLPktEB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 03:51:46',NULL),(627,'2022714122217122','{\"seq\": 285606, \"atme\": false, \"font\": \"宋体\", \"rand\": 1513269026, \"time\": 1657772536, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"前端小白梁帅帅\", \"role\": \"admin\", \"level\": 5, \"title\": \"\", \"user_id\": 992374163, \"nickname\": \"如梦初醒、\"}, \"message\": [{\"text\": \"帮忙看个报错xdm\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/992374163/3806911865-2401891383-71994692AA00209EAAB200B3CF260E29/0?term=2\", \"file\": \"71994692aa00209eaab200b3cf260e2991411-994-222.jpg\", \"type\": \"image\", \"asface\": false}], \"self_id\": 1841031740, \"user_id\": 992374163, \"group_id\": 316911865, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"ng-alain\", \"message_id\": \"EuOw+TsmbZMABFumWjKnImLPmfgB\", \"raw_message\": \"帮忙看个报错xdm[图片]\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 04:22:17',NULL),(628,'2022714122755171','{\"seq\": 393089, \"atme\": false, \"font\": \"宋体\", \"rand\": 877878968, \"time\": 1657772874, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"正在学习WEB全栈\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 80418684, \"nickname\": \"o\"}, \"message\": [{\"text\": \"姐姐帮忙找个人带一下嘛,我很乖的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 80418684, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6wTLF3wABf+BNFNeuGLPm0oB\", \"raw_message\": \"姐姐帮忙找个人带一下嘛,我很乖的\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 04:27:55',NULL),(629,'2022714124213166','{\"seq\": 34246, \"atme\": false, \"font\": \"宋体\", \"rand\": 468103913, \"time\": 1657773732, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"秋招提前批招人,23届本科私聊我\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 719839253, \"nickname\": \"00 RAISER\"}, \"message\": [{\"text\": \"大佬们,帮忙看看这个报错是怎么回事啊\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 719839253, \"group_id\": 662934214, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"css/vue/node/vuetify cain前\", \"message_id\": \"J4OSxirn4BUAAIXGG+ay6WLPnqQB\", \"raw_message\": \"大佬们,帮忙看看这个报错是怎么回事啊\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 04:42:13',NULL),(630,'202271412443140','{\"seq\": 2611, \"atme\": false, \"font\": \"宋体\", \"rand\": 1426539996, \"time\": 1657773842, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 32, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 963353671, \"nickname\": \"郭敬明😘😘\"}, \"message\": [{\"text\": \"接超级签 企业签 MDM需要的老板联系我!\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 963353671, \"group_id\": 621421868, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"C/C++/C#技术交流群\", \"message_id\": \"JQolLDlrnEcAAAozVQdF3GLPnxIB\", \"raw_message\": \"接超级签 企业签 MDM需要的老板联系我!\", \"message_type\": \"group\"}','联系我',1,'2022-07-14 04:44:03',NULL),(631,'2022714125932125','{\"seq\": 1349162, \"atme\": false, \"font\": \"Microsoft YaHei\", \"rand\": 2041184009, \"time\": 1657774771, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"杭州\", \"card\": \"SKY[交流]涛涛\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1536456076, \"nickname\": \"   \"}, \"message\": [{\"text\": \"有人帮忙看下吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1536456076, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcluUdYwAFJYqean/CWLPorMB\", \"raw_message\": \"有人帮忙看下吗\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 04:59:32',NULL),(632,'2022714135349119','{\"seq\": 78455, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3707648072, \"time\": 1657778028, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"小布丁\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1585517965, \"nickname\": \"吾\"}, \"message\": [{\"text\": \"双屏幕那种 那个大屏都是自己花钱搞得\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1585517965, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE前端划水群\", \"message_id\": \"J/+MYF6BFY0AATJ33P44SGLPr2wB\", \"raw_message\": \"双屏幕那种 那个大屏都是自己花钱搞得\", \"message_type\": \"group\"}','花钱',1,'2022-07-14 05:53:49',NULL),(633,'2022714142212187','{\"seq\": 953253, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1345709756, \"time\": 1657779731, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"阿尔巴尼亚\", \"card\": \"长沙 安迪\", \"role\": \"member\", \"level\": 2, \"title\": \"\", \"user_id\": 1994516231, \"nickname\": \"安迪\"}, \"message\": [{\"text\": \"哪位大哥可以帮忙优化一下vue\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1994516231, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB3bh5wcADoulUDXmvGLPthMB\", \"raw_message\": \"哪位大哥可以帮忙优化一下vue\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 06:22:12',NULL),(634,'2022714165736160','{\"seq\": 393869, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4005587121, \"time\": 1657789056, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"冰岛\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1471139102, \"nickname\": \"尘落、风归去\"}, \"message\": [{\"qq\": 1446917918, \"text\": \"@前端小白\", \"type\": \"at\"}, {\"text\": \" 你们公司就你一个前端? 就不会让公司前端帮忙看下?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1471139102, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h61evzR4ABgKN7sBosWLP2oAB\", \"raw_message\": \"@前端小白 你们公司就你一个前端? 就不会让公司前端帮忙看下?\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 08:57:36',NULL),(635,'202271417251184','{\"seq\": 120159, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1225953868, \"time\": 1657789371, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"我爱高山\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1369501150, \"nickname\": \"孔乙己拉夫米\"}, \"message\": [{\"text\": \"有偿?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1369501150, \"group_id\": 236172566, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"✨🐢🚀✨\", \"message_id\": \"DhO1FlGg7d4AAdVfSRKSTGLP27sB\", \"raw_message\": \"有偿?\", \"message_type\": \"group\"}','有偿',1,'2022-07-14 09:02:51',NULL),(636,'202271417331174','{\"seq\": 518722, \"atme\": false, \"font\": \"宋体\", \"rand\": 372577148, \"time\": 1657789411, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"南极洲\", \"card\": \"sudo chmod -r 000/\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 626935717, \"nickname\": \"那时风停了\"}, \"message\": [{\"text\": \"有没有大佬帮忙解决下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 626935717, \"group_id\": 538246944, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JS、Vue、Element-UI技术栈\", \"message_id\": \"IBT/ICVeR6UAB+pCFjUTfGLP2+MB\", \"raw_message\": \"有没有大佬帮忙解决下\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 09:03:31',NULL),(637,'2022714171859158','{\"seq\": 120175, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4276581395, \"time\": 1657790339, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 32, \"sex\": \"unknown\", \"area\": \"深圳\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 2225151531, \"nickname\": \"yuki\"}, \"message\": [{\"text\": \"以前在群里老是帮萌新解决问题,连句谢谢都没有\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2225151531, \"group_id\": 236172566, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"✨🐢🚀✨\", \"message_id\": \"DhO1FoShHisAAdVv/ud0E2LP34MB\", \"raw_message\": \"以前在群里老是帮萌新解决问题,连句谢谢都没有\", \"message_type\": \"group\"}','解决问题',1,'2022-07-14 09:18:59',NULL),(638,'2022714171950130','{\"seq\": 120178, \"atme\": false, \"font\": \"宋体\", \"rand\": 16833951, \"time\": 1657790390, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"male\", \"area\": \"成都\", \"card\": \".gitignore\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1659488338, \"nickname\": \"‭\"}, \"message\": [{\"text\": \"按这收费,我能专职解决问题/菜汪\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1659488338, \"group_id\": 236172566, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"✨🐢🚀✨\", \"message_id\": \"DhO1FmLpyFIAAdVyAQDdn2LP37YB\", \"raw_message\": \"按这收费,我能专职解决问题/菜汪\", \"message_type\": \"group\"}','解决问题',1,'2022-07-14 09:19:50',NULL),(639,'2022714172439148','{\"seq\": 276862, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1923506941, \"time\": 1657790678, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 28, \"sex\": \"male\", \"area\": \"商丘\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 511383113, \"nickname\": \"蓝\"}, \"message\": [{\"text\": \"有大佬帮忙看下这是什么问题?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 511383113, \"group_id\": 692522608, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端Vue开发程序员贰\", \"message_id\": \"KUcOcB57FkkABDl+cqZi/WLP4NYB\", \"raw_message\": \"有大佬帮忙看下这是什么问题?\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 09:24:39',NULL),(640,'2022714175533169','{\"seq\": 12618, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2875905067, \"time\": 1657792533, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 31, \"sex\": \"male\", \"area\": \"安哥拉\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 824594761, \"nickname\": \"木木\"}, \"message\": [{\"text\": \"能用别人的东西去解决问题就已经很厉害了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 824594761, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVgjEmUUkAADFKq2rUK2LP6BUB\", \"raw_message\": \"能用别人的东西去解决问题就已经很厉害了\", \"message_type\": \"group\"}','解决问题',1,'2022-07-14 09:55:33',NULL),(641,'2022714175624115','{\"seq\": 12623, \"atme\": false, \"font\": \"宋体\", \"rand\": 1328055037, \"time\": 1657792583, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 31, \"sex\": \"female\", \"area\": \"\", \"card\": \"全栈-接单-30年生活经验\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 422304141, \"nickname\": \"抉择之后\"}, \"message\": [{\"text\": \"解决问题就行了,但是不要感觉自己了不起\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 422304141, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVghkr2Y0AADFPTyiC/WLP6EcB\", \"raw_message\": \"解决问题就行了,但是不要感觉自己了不起\", \"message_type\": \"group\"}','解决问题',1,'2022-07-14 09:56:24',NULL),(642,'202271418646142','{\"seq\": 394556, \"atme\": false, \"font\": \"宋体\", \"rand\": 719461538, \"time\": 1657793206, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1634350856, \"nickname\": \"若常\"}, \"message\": [{\"text\": \"万一没面试过,对下次有帮助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1634350856, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h62FqNwgABgU8KuIcomLP6rYB\", \"raw_message\": \"万一没面试过,对下次有帮助\", \"message_type\": \"group\"}','帮助',1,'2022-07-14 10:06:46',NULL),(643,'2022714182833115','{\"seq\": 12770, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2931113187, \"time\": 1657794513, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 31, \"sex\": \"male\", \"area\": \"安哥拉\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 824594761, \"nickname\": \"木木\"}, \"message\": [{\"text\": \"你说的这个对小白没帮助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 824594761, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVgjEmUUkAADHirrU842LP79EB\", \"raw_message\": \"你说的这个对小白没帮助\", \"message_type\": \"group\"}','帮助',1,'2022-07-14 10:28:33',NULL),(644,'2022714182953109','{\"seq\": 394744, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2235069747, \"time\": 1657794593, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"石家庄\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2861759415, \"nickname\": \"ぺ嗳ズDe寳贝\"}, \"message\": [{\"text\": \"我傻了,有家公司现在联系我了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2861759415, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66qS+7cABgX4hTh1M2LP8CEB\", \"raw_message\": \"我傻了,有家公司现在联系我了\", \"message_type\": \"group\"}','联系我',1,'2022-07-14 10:29:53',NULL),(645,'2022714184317113','{\"seq\": 12090, \"atme\": false, \"font\": \"宋体\", \"rand\": 1161406818, \"time\": 1657795397, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2789771577, \"nickname\": \"ʚʕ̯•͡˔•̯᷅ʔɞ\"}, \"message\": [{\"text\": \"有人接单吗?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2789771577, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaKZIiTkAAC86RTmpYmLP80UB\", \"raw_message\": \"有人接单吗?\", \"message_type\": \"group\"}','人接单',1,'2022-07-14 10:43:17',NULL),(646,'2022714184847174','{\"seq\": 12846, \"atme\": false, \"font\": \"新宋体\", \"rand\": 3229415029, \"time\": 1657795727, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"桂林\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 978243710, \"nickname\": \"Passion\"}, \"message\": [{\"text\": \"有没有精通vue前端的大佬帮我跑一下项目,项目突然报错了,有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 978243710, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVgjpO0H4AADIuwHz2dWLP9I8B\", \"raw_message\": \"有没有精通vue前端的大佬帮我跑一下项目,项目突然报错了,有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-14 10:48:47',NULL),(647,'20227141929179','{\"seq\": 12878, \"atme\": false, \"font\": \"楷体\", \"rand\": 2060337566, \"time\": 1657796529, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 757951164, \"nickname\": \"浅笑·@掉忆、\"}, \"message\": [{\"text\": \"找一个会对接公众号到第三方平台的,有偿咨询\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 757951164, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVgi0tarwAADJOes5BnmLP97EB\", \"raw_message\": \"找一个会对接公众号到第三方平台的,有偿咨询\", \"message_type\": \"group\"}','有偿',1,'2022-07-14 11:02:09',NULL),(648,'202271419219173','{\"seq\": 6395, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 434918619, \"time\": 1657797669, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABj7GexU22LP/CUB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 11:21:09',NULL),(649,'2022714192744133','{\"seq\": 162296, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 441752943, \"time\": 1657798064, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2825586623, \"nickname\": \"卡布奇诺©\"}, \"message\": [{\"text\": \"党建智慧平台源码 有的来联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2825586623, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O46hrB78AAnn4GlSdb2LP/bAB\", \"raw_message\": \"党建智慧平台源码 有的来联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-14 11:27:44',NULL),(650,'2022714193928134','{\"seq\": 1350982, \"atme\": false, \"font\": \"宋体\", \"rand\": 1413799959, \"time\": 1657798768, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 18, \"sex\": \"female\", \"area\": \"\", \"card\": \"SKY[在等]晚安\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 93730314, \"nickname\": \"在等晚安.\"}, \"message\": [{\"text\": \"有人知道怎么让粉色的下来吗有偿\", \"type\": \"text\"}, {\"url\": \"https://c2cpicdw.qpic.cn/offpic_new/70934898/0BADBADBAD-1848731253/0?term=2\", \"file\": \"e2f71c69c745da5d1b4312f3136169d5264111-1886-605.png\", \"type\": \"image\", \"asface\": false}, {\"url\": \"https://c2cpicdw.qpic.cn/offpic_new/70934898/1BADBADBAD-651010505/0?term=2\", \"file\": \"1d9ae6e6685fc5edfc06d562dda9ca6768583-651-861.png\", \"type\": \"image\", \"asface\": false}], \"self_id\": 1841031740, \"user_id\": 93730314, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcgWWNgoAFJ1GVETgF2LQAHAB\", \"raw_message\": \"有人知道怎么让粉色的下来吗有偿[图片][图片]\", \"message_type\": \"group\"}','有偿',1,'2022-07-14 11:39:28',NULL),(651,'2022714194243122','{\"seq\": 1350988, \"atme\": false, \"font\": \"宋体\", \"rand\": 1249344050, \"time\": 1657798963, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"茂名\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1335537364, \"nickname\": \"J@.\"}, \"message\": [{\"text\": \"有人帮忙做个弹性布局页面吗 有报酬\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1335537364, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphck+artQAFJ1MSnd6MmLQATMB\", \"raw_message\": \"有人帮忙做个弹性布局页面吗 有报酬\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 11:42:43',NULL),(652,'2022714195036111','{\"seq\": 1351049, \"atme\": false, \"font\": \"宋体\", \"rand\": 636866439, \"time\": 1657799435, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 38, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[水彩]涂鸦\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 297286474, \"nickname\": \"水彩涂鸦\"}, \"message\": [{\"text\": \"都花钱了,不得找个高级点的写法\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 297286474, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphchG4O0oAFJ2JJfXPh2LQAwsB\", \"raw_message\": \"都花钱了,不得找个高级点的写法\", \"message_type\": \"group\"}','花钱',1,'2022-07-14 11:50:36',NULL),(653,'2022714202641129','{\"seq\": 8765, \"atme\": false, \"font\": \"宋体\", \"rand\": 890757881, \"time\": 1657801601, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 77990333, \"nickname\": \"流汗\"}, \"message\": [{\"text\": \"请问有人接单房地产微信小程序开发吗?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 77990333, \"group_id\": 781027167, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/ react / vue/小程序/\", \"message_id\": \"Lo2HXwSmCb0AACI9NRfi+WLQC4EB\", \"raw_message\": \"请问有人接单房地产微信小程序开发吗?\", \"message_type\": \"group\"}','人接单',1,'2022-07-14 12:26:41',NULL),(654,'2022714203243115','{\"seq\": 33575, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 668390930, \"time\": 1657801963, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIMnJ9bWEmLQDOsB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 12:32:43',NULL),(655,'2022714204149169','{\"seq\": 1351264, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 618564699, \"time\": 1657802509, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"北京\", \"card\": \"SKY[交流]髑战\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2974943495, \"nickname\": \"髑战\"}, \"message\": [{\"text\": \"three.js代码调试解决,有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2974943495, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcrFSCQcAFJ5gJN6MW2LQDw0B\", \"raw_message\": \"three.js代码调试解决,有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-14 12:41:49',NULL),(656,'2022714204239143','{\"seq\": 1351272, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 376031019, \"time\": 1657802559, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"北京\", \"card\": \"SKY[交流]髑战\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2974943495, \"nickname\": \"髑战\"}, \"message\": [{\"text\": \"请问一下这种怎么解决呢,帮我解决一下有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2974943495, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcrFSCQcAFJ5oFmnHK2LQDz8B\", \"raw_message\": \"请问一下这种怎么解决呢,帮我解决一下有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-14 12:42:39',NULL),(657,'2022714205340120','{\"seq\": 1351314, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1867952840, \"time\": 1657803220, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"北京\", \"card\": \"SKY[交流]髑战\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2974943495, \"nickname\": \"髑战\"}, \"message\": [{\"text\": \"兄弟们帮忙调一下代码\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2974943495, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcrFSCQcAFJ6Sb1ayyGLQEdQB\", \"raw_message\": \"兄弟们帮忙调一下代码\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 12:53:40',NULL),(658,'202271421425188','{\"seq\": 1351352, \"atme\": false, \"font\": \"宋体\", \"rand\": 1935346325, \"time\": 1657803865, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"北京\", \"card\": \"SKY[交流]髑战\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2974943495, \"nickname\": \"髑战\"}, \"message\": [{\"text\": \"求帮忙调代码\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2974943495, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcrFSCQcAFJ64c1sKlWLQFFkB\", \"raw_message\": \"求帮忙调代码\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 13:04:25',NULL),(659,'2022714213238173','{\"seq\": 395190, \"atme\": false, \"font\": \"宋体\", \"rand\": 1965937160, \"time\": 1657805558, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 2, \"sex\": \"male\", \"area\": \"\", \"card\": \"玄枵\", \"role\": \"admin\", \"level\": 1, \"title\": \"\", \"user_id\": 3187294487, \"nickname\": \"玄枵\"}, \"message\": [{\"text\": \"他们前端老大让我明天帮忙面面前端/脑阔疼\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3187294487, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6736QRcABge2dS3SCGLQGvYB\", \"raw_message\": \"他们前端老大让我明天帮忙面面前端/脑阔疼\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 13:32:38',NULL),(660,'20227142259122','{\"seq\": 2621, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3636065519, \"time\": 1657807509, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 32, \"sex\": \"male\", \"area\": \"广州\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3606758848, \"nickname\": \"建站仿站APP开发\"}, \"message\": [{\"text\": \"需要做网站的可以联系我,费用合理\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3606758848, \"group_id\": 621421868, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"C/C++/C#技术交流群\", \"message_id\": \"JQolLNb6xcAAAAo92Ln072LQIpUB\", \"raw_message\": \"需要做网站的可以联系我,费用合理\", \"message_type\": \"group\"}','联系我',1,'2022-07-14 14:05:09',NULL),(661,'20227142262153','{\"seq\": 395343, \"atme\": false, \"font\": \"宋体\", \"rand\": 1842493473, \"time\": 1657807561, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"人人都笑李嘉图,人人都是李嘉图\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1487085404, \"nickname\": \"青蛙先森\"}, \"message\": [{\"text\": \"花钱有屁用\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1487085404, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h61ijH1wABghPbdI4IWLQIskB\", \"raw_message\": \"花钱有屁用\", \"message_type\": \"group\"}','花钱',1,'2022-07-14 14:06:02',NULL),(662,'2022714225053167','{\"seq\": 438048, \"atme\": false, \"font\": \"宋体\", \"rand\": 2108731671, \"time\": 1657810253, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2418374391, \"nickname\": \"LOSER\"}, \"message\": [{\"text\": \"大哥们,求帮助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2418374391, \"group_id\": 232041042, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uView UI 官方10群\", \"message_id\": \"DdSqUpAldvcABq8gfbCxF2LQLU0B\", \"raw_message\": \"大哥们,求帮助\", \"message_type\": \"group\"}','帮助',1,'2022-07-14 14:50:53',NULL),(663,'202271503352153','{\"seq\": 396318, \"atme\": false, \"font\": \"宋体\", \"rand\": 2032687822, \"time\": 1657816432, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 2, \"sex\": \"male\", \"area\": \"\", \"card\": \"玄枵\", \"role\": \"admin\", \"level\": 1, \"title\": \"\", \"user_id\": 3187294487, \"nickname\": \"玄枵\"}, \"message\": [{\"text\": \"我之前就是去公安帮忙进行安全排查\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3187294487, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6736QRcABgweeShazmLQRXAB\", \"raw_message\": \"我之前就是去公安帮忙进行安全排查\", \"message_type\": \"group\"}','帮忙',1,'2022-07-14 16:33:52',NULL),(664,'202271503648143','{\"seq\": 97098, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 199459807, \"time\": 1657816608, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 154958624, \"nickname\": \"阿狸\"}, \"message\": [{\"text\": \"有没有大哥 教我用一下 官方的用户id体系 有偿好谈 现在有时间的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 154958624, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp9wk8eyAAAXtKC+OD32LQRiAB\", \"raw_message\": \"有没有大哥 教我用一下 官方的用户id体系 有偿好谈 现在有时间的\", \"message_type\": \"group\"}','有偿',1,'2022-07-14 16:36:48',NULL),(665,'202271994624134','{\"seq\": 13937, \"atme\": false, \"font\": \"宋体\", \"rand\": 405820877, \"time\": 1658195184, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 362075097, \"nickname\": \"米兰小铁匠 \"}, \"message\": [{\"text\": \"各位大佬,ios上架求助!有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 362075097, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaBWU09kAADZxGDBVzWLWDPAB\", \"raw_message\": \"各位大佬,ios上架求助!有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-19 01:46:24',NULL),(666,'202271995935112','{\"seq\": 2671, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3272719370, \"time\": 1658195975, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 38, \"sex\": \"male\", \"area\": \"沈阳\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 24328054, \"nickname\": \"郑伟\"}, \"message\": [{\"text\": \"要做一个审批流的系统,因没时间弄,找个人开发,前端 vben框架,后端py的,有兴趣的联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 24328054, \"group_id\": 956712240, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vben、antd、vue3、ts开发�\", \"message_id\": \"OQZFMAFzN3YAAApvwxG8CmLWEAcB\", \"raw_message\": \"要做一个审批流的系统,因没时间弄,找个人开发,前端 vben框架,后端py的,有兴趣的联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-19 01:59:35',NULL),(667,'202271910747120','{\"seq\": 277491, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1785002279, \"time\": 1658196467, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"王麦麦\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1780324016, \"nickname\": \"噶咯\"}, \"message\": [{\"text\": \"大佬们,帮忙看一下,下面的这两个命令有什么区别吗?\\r\\r $ sudo npm uninstall -g vue-cli\\r$ sudo npm uninstall -g @vue/cli\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1780324016, \"group_id\": 692522608, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端Vue开发程序员贰\", \"message_id\": \"KUcOcGodlrAABDvzamT5J2LWEfMB\", \"raw_message\": \"大佬们,帮忙看一下,下面的这两个命令有什么区别吗?\\r\\r $ sudo npm uninstall -g vue-cli\\r$ sudo npm uninstall -g @vue/cli\", \"message_type\": \"group\"}','帮忙',1,'2022-07-19 02:07:47',NULL),(668,'202271910155142','{\"seq\": 162522, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 582597319, \"time\": 1658196905, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1577350959, \"nickname\": \"风霜何故\"}, \"message\": [{\"text\": \"全国首家APP免费开发,技术风投,战略合作。\\r行业内独角兽打造\\r帮助中小型企业互联网转型!\\r专业做软件开发\\r知识付费APP\\r教育平台APP\\r同城服务APP\\r社交直播APP\\r家政APP\\r悬赏任务发布APP\\r多用户商城APP\\r全行业APP平台定制开发\\r华为云信息安全服务\\r仿爱聊交友APP开发\\r三方支付接口\\r爱搭支付对接\\r微信:YIZHIAINI-ZSJ\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1577350959, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O414Edy8AAnraIrm6x2LWE6kB\", \"raw_message\": \"全国首家APP免费开发,技术风投,战略合作。\\r行业内独角兽打造\\r帮助中小型企业互联网转型!\\r专业做软件开发\\r知识付费APP\\r教育平台APP\\r同城服务APP\\r社交直播APP\\r家政APP\\r悬赏任务发布APP\\r多用户商城APP\\r全行业APP平台定制开发\\r华为云信息安全服务\\r仿爱聊交友APP开发\\r三方支付接口\\r爱搭支付对接\\r微信:YIZHIAINI-ZSJ\", \"message_type\": \"group\"}','付费',1,'2022-07-19 02:15:05',NULL),(669,'2022719103426166','{\"seq\": 82512, \"atme\": false, \"font\": \"宋体\", \"rand\": 1109952753, \"time\": 1658198066, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 401018843, \"nickname\": \"君梦归\"}, \"message\": [{\"text\": \"归梦工作室,集IT美工于一体的公益组织团队,如果您是IT或者设计行业的,想要共同维护一个团队,那欢迎来到这里,和我们一起努力,创造美好未来。\\n2021年末,我们助力医院构建内部系统;2022年初,我们助力乡村疫情数据统计,我们即将投入到新一期的助力大学生计划(新媒体助力),以及新媒体助力乡村振兴。\\n只要你有团队意识,以研发,设计为乐趣,欢迎联系我们,咱们详细交谈。\\nQQ:401018843\\n微信:13291973293\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 401018843, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE 前端划水群\", \"message_id\": \"J/+MYBfnD9sAAUJQQiiI8WLWGDIB\", \"raw_message\": \"归梦工作室,集IT美工于一体的公益组织团队,如果您是IT或者设计行业的,想要共同维护一个团队,那欢迎来到这里,和我们一起努力,创造美好未来。\\n2021年末,我们助力医院构建内部系统;2022年初,我们助力乡村疫情数据统计,我们即将投入到新一期的助力大学生计划(新媒体助力),以及新媒体助力乡村振兴。\\n只要你有团队意识,以研发,设计为乐趣,欢迎联系我们,咱们详细交谈。\\nQQ:401018843\\n微信:13291973293\", \"message_type\": \"group\"}','联系我',1,'2022-07-19 02:34:26',NULL),(670,'2022719103421188','{\"seq\": 405019, \"atme\": false, \"font\": \"宋体\", \"rand\": 869938669, \"time\": 1658198061, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 401018843, \"nickname\": \"君梦归\"}, \"message\": [{\"text\": \"归梦工作室,集IT美工于一体的公益组织团队,如果您是IT或者设计行业的,想要共同维护一个团队,那欢迎来到这里,和我们一起努力,创造美好未来。\\n2021年末,我们助力医院构建内部系统;2022年初,我们助力乡村疫情数据统计,我们即将投入到新一期的助力大学生计划(新媒体助力),以及新媒体助力乡村振兴。\\n只要你有团队意识,以研发,设计为乐趣,欢迎联系我们,咱们详细交谈。\\nQQ:401018843\\n微信:13291973293\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 401018843, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6xfnD9sABi4bM9o17WLWGC0B\", \"raw_message\": \"归梦工作室,集IT美工于一体的公益组织团队,如果您是IT或者设计行业的,想要共同维护一个团队,那欢迎来到这里,和我们一起努力,创造美好未来。\\n2021年末,我们助力医院构建内部系统;2022年初,我们助力乡村疫情数据统计,我们即将投入到新一期的助力大学生计划(新媒体助力),以及新媒体助力乡村振兴。\\n只要你有团队意识,以研发,设计为乐趣,欢迎联系我们,咱们详细交谈。\\nQQ:401018843\\n微信:13291973293\", \"message_type\": \"group\"}','联系我',1,'2022-07-19 02:34:21',NULL),(671,'2022719103443184','{\"seq\": 1365557, \"atme\": false, \"font\": \"宋体\", \"rand\": 341991898, \"time\": 1658198083, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[交流]君梦归\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 401018843, \"nickname\": \"君梦归\"}, \"message\": [{\"text\": \"归梦工作室,集IT美工于一体的公益组织团队,如果您是IT或者设计行业的,想要共同维护一个团队,那欢迎来到这里,和我们一起努力,创造美好未来。\\n2021年末,我们助力医院构建内部系统;2022年初,我们助力乡村疫情数据统计,我们即将投入到新一期的助力大学生计划(新媒体助力),以及新媒体助力乡村振兴。\\n只要你有团队意识,以研发,设计为乐趣,欢迎联系我们,咱们详细交谈。\\nQQ:401018843\\n微信:13291973293\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 401018843, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphchfnD9sAFNY1FGJh2mLWGEMB\", \"raw_message\": \"归梦工作室,集IT美工于一体的公益组织团队,如果您是IT或者设计行业的,想要共同维护一个团队,那欢迎来到这里,和我们一起努力,创造美好未来。\\n2021年末,我们助力医院构建内部系统;2022年初,我们助力乡村疫情数据统计,我们即将投入到新一期的助力大学生计划(新媒体助力),以及新媒体助力乡村振兴。\\n只要你有团队意识,以研发,设计为乐趣,欢迎联系我们,咱们详细交谈。\\nQQ:401018843\\n微信:13291973293\", \"message_type\": \"group\"}','联系我',1,'2022-07-19 02:34:43',NULL),(672,'202271910357178','{\"seq\": 14116, \"atme\": false, \"font\": \"宋体\", \"rand\": 1944195258, \"time\": 1658198107, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 401018843, \"nickname\": \"君梦归\"}, \"message\": [{\"text\": \"归梦工作室,集IT美工于一体的公益组织团队,如果您是IT或者设计行业的,想要共同维护一个团队,那欢迎来到这里,和我们一起努力,创造美好未来。\\n2021年末,我们助力医院构建内部系统;2022年初,我们助力乡村疫情数据统计,我们即将投入到新一期的助力大学生计划(新媒体助力),以及新媒体助力乡村振兴。\\n只要你有团队意识,以研发,设计为乐趣,欢迎联系我们,咱们详细交谈。\\nQQ:401018843\\n微信:13291973293\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 401018843, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVghfnD9sAADckc+IQumLWGFsB\", \"raw_message\": \"归梦工作室,集IT美工于一体的公益组织团队,如果您是IT或者设计行业的,想要共同维护一个团队,那欢迎来到这里,和我们一起努力,创造美好未来。\\n2021年末,我们助力医院构建内部系统;2022年初,我们助力乡村疫情数据统计,我们即将投入到新一期的助力大学生计划(新媒体助力),以及新媒体助力乡村振兴。\\n只要你有团队意识,以研发,设计为乐趣,欢迎联系我们,咱们详细交谈。\\nQQ:401018843\\n微信:13291973293\", \"message_type\": \"group\"}','联系我',1,'2022-07-19 02:35:07',NULL),(673,'2022719105211106','{\"seq\": 1365669, \"atme\": false, \"font\": \"宋体\", \"rand\": 31102551, \"time\": 1658199131, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"美国\", \"card\": \"SKY[交流]Zeta\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1720963661, \"nickname\": \"zeta\"}, \"message\": [{\"text\": \"但花钱更快\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1720963661, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcmaT0k0AFNalAdqWV2LWHFsB\", \"raw_message\": \"但花钱更快\", \"message_type\": \"group\"}','花钱',1,'2022-07-19 02:52:11',NULL),(674,'202271910545127','{\"seq\": 1365686, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 722529495, \"time\": 1658199245, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[花好]月圆\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1786317930, \"nickname\": \"a.花好月圆\"}, \"message\": [{\"text\": \"解决问题!!\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1786317930, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcmp5DGoAFNa2KxDs12LWHM0B\", \"raw_message\": \"解决问题!!\", \"message_type\": \"group\"}','解决问题',1,'2022-07-19 02:54:05',NULL),(675,'202271911016184','{\"seq\": 405119, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2391994796, \"time\": 1658199616, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 28, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 963524365, \"nickname\": \"&&&\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/963524365/599777771-2723298379-69B76D1FD49D76F8C6EF45E20B8112EF/0?term=2\", \"file\": \"69b76d1fd49d76f8c6ef45e20b8112ef49423-1152-570.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r大佬们帮忙看个问题哈,我后台有数据,前端获取不到数据\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 963524365, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6zluNw0ABi5/jpLxrGLWHkAB\", \"raw_message\": \"[图片]\\r大佬们帮忙看个问题哈,我后台有数据,前端获取不到数据\", \"message_type\": \"group\"}','帮忙',1,'2022-07-19 03:00:16',NULL),(676,'202271911824102','{\"seq\": 337500, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 542925045, \"time\": 1658200104, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"male\", \"area\": \"\", \"card\": \"QQ 老冰\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 994603779, \"nickname\": \"突兀π\"}, \"message\": [{\"text\": \"看看能不能帮助你\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 994603779, \"group_id\": 558925746, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue/javascript\", \"message_id\": \"IVCHsjtIcwMABSZcIFxg9WLWICgB\", \"raw_message\": \"看看能不能帮助你\", \"message_type\": \"group\"}','帮助',1,'2022-07-19 03:08:24',NULL),(677,'2022719111126174','{\"seq\": 2676, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2049739592, \"time\": 1658200286, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2732729256, \"nickname\": \"ghh\"}, \"message\": [{\"text\": \"有偿 大佬们 别藏了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2732729256, \"group_id\": 956712240, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vben、antd、vue3、ts开发�\", \"message_id\": \"OQZFMKLiI6gAAAp0eiyLSGLWIN4B\", \"raw_message\": \"有偿 大佬们 别藏了\", \"message_type\": \"group\"}','有偿',1,'2022-07-19 03:11:26',NULL),(678,'2022719113056108','{\"seq\": 520126, \"atme\": false, \"font\": \"宋体\", \"rand\": 843065131, \"time\": 1658201456, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1808827781, \"nickname\": \"9号S型\"}, \"message\": [{\"text\": \"有能打服务器的联系我 ddos就算了 能做dns劫持或者别的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1808827781, \"group_id\": 538246944, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JS、Vue、Element-UI技术栈\", \"message_id\": \"IBT/IGvQhYUAB+++MkAnK2LWJXAB\", \"raw_message\": \"有能打服务器的联系我 ddos就算了 能做dns劫持或者别的\", \"message_type\": \"group\"}','联系我',1,'2022-07-19 03:30:56',NULL),(679,'2022719113519131','{\"seq\": 20557, \"atme\": false, \"font\": \"宋体\", \"rand\": 1021437589, \"time\": 1658201719, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"石家庄\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2532263296, \"nickname\": \"L🎁\"}, \"message\": [{\"text\": \"哪位大佬帮忙看一下/泪奔页面可以访问到 但是找不到其他的静态资源文件\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2532263296, \"group_id\": 683903138, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JeecgBoot群Vue3①\", \"message_id\": \"KMOIopbvRYAAAFBNPOHmlWLWJncB\", \"raw_message\": \"哪位大佬帮忙看一下/泪奔页面可以访问到 但是找不到其他的静态资源文件\", \"message_type\": \"group\"}','帮忙',1,'2022-07-19 03:35:19',NULL),(680,'2022719115233119','{\"seq\": 8205, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1814511096, \"time\": 1658202753, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 28, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1057780049, \"nickname\": \"!!!!\"}, \"message\": [{\"text\": \"花钱问题很容易解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1057780049, \"group_id\": 528407677, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,vue,uniapp,小程序\", \"message_id\": \"H37cfT8McVEAACANbCc9+GLWKoEB\", \"raw_message\": \"花钱问题很容易解决\", \"message_type\": \"group\"}','花钱',1,'2022-07-19 03:52:33',NULL),(681,'202271912539176','{\"seq\": 4659, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1460658940, \"time\": 1658203539, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 33, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 811948956, \"nickname\": \"网站APP定制开发\"}, \"message\": [{\"text\": \"个人接单:各行各业网站模板 建站一条龙 快速仿站 靠谱 长期合作\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 811948956, \"group_id\": 124041790, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React外包交流群\", \"message_id\": \"B2S6PjBlW5wAABIzVw/i/GLWLZMB\", \"raw_message\": \"个人接单:各行各业网站模板 建站一条龙 快速仿站 靠谱 长期合作\", \"message_type\": \"group\"}','人接单',1,'2022-07-19 04:05:39',NULL),(682,'202271912721167','{\"seq\": 6464, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1158697761, \"time\": 1658203641, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABlARRBTIWLWLfkB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-19 04:07:21',NULL),(683,'20227191284142','{\"seq\": 33623, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 463639463, \"time\": 1658203684, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAINXG6KTp2LWLiQB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-19 04:08:04',NULL),(684,'2022719122137164','{\"seq\": 5349, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3321608687, \"time\": 1658204497, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 33, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 811948956, \"nickname\": \"网站APP定制开发\"}, \"message\": [{\"text\": \"个人接单:各行各业网站模板 建站一条龙 快速仿站 10年优化 靠谱 长期合作\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 811948956, \"group_id\": 581532578, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/小程序外包交流\", \"message_id\": \"Iql7ojBlW5wAABTlxfu572LWMVEB\", \"raw_message\": \"个人接单:各行各业网站模板 建站一条龙 快速仿站 10年优化 靠谱 长期合作\", \"message_type\": \"group\"}','人接单',1,'2022-07-19 04:21:37',NULL),(685,'2022719124543163','{\"seq\": 1367007, \"atme\": false, \"font\": \"宋体\", \"rand\": 2102897715, \"time\": 1658205943, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"female\", \"area\": \"深圳\", \"card\": \"SKY[交流]訥訥\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2500233023, \"nickname\": \"訥\"}, \"message\": [{\"text\": \"有没有接单的平台\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2500233023, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcpUGhz8AFNvffVesM2LWNvcB\", \"raw_message\": \"有没有接单的平台\", \"message_type\": \"group\"}','有接单的',1,'2022-07-19 04:45:43',NULL),(686,'2022719132613106','{\"seq\": 174657, \"atme\": false, \"font\": \"宋体\", \"rand\": 328045671, \"time\": 1658208373, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"male\", \"area\": \"法罗群岛\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2425415623, \"nickname\": \"ジュディ\"}, \"message\": [{\"text\": \"有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2425415623, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIZCQ58cAAqpBE42UZ2LWQHUB\", \"raw_message\": \"有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-19 05:26:13',NULL),(687,'2022719134035178','{\"seq\": 162532, \"atme\": false, \"font\": \"宋体\", \"rand\": 4263629359, \"time\": 1658209235, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 641988411, \"nickname\": \"安稳。\"}, \"message\": [{\"text\": \"有想接私活的程序员联系我 V:Laity8023n\\r有想接私活的程序员联系我 V:Laity8023n\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 641988411, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O4yZD9zsAAnrk/iHSL2LWQ9MB\", \"raw_message\": \"有想接私活的程序员联系我 V:Laity8023n\\r有想接私活的程序员联系我 V:Laity8023n\", \"message_type\": \"group\"}','联系我',1,'2022-07-19 05:40:35',NULL),(688,'2022719135851101','{\"seq\": 4660, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4206660447, \"time\": 1658210331, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 32, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 575672988, \"nickname\": \"CCAV-建站定制仿站开发\"}, \"message\": [{\"text\": \"需要做网站、排名、仿站业务可以联系我,送美刀\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 575672988, \"group_id\": 124041790, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React外包交流群\", \"message_id\": \"B2S6PiJQEpwAABI0+ryLX2LWSBsB\", \"raw_message\": \"需要做网站、排名、仿站业务可以联系我,送美刀\", \"message_type\": \"group\"}','联系我',1,'2022-07-19 05:58:51',NULL),(689,'2022719141032119','{\"seq\": 421608, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1082130127, \"time\": 1658211032, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 38, \"sex\": \"male\", \"area\": \"上海\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 385933691, \"nickname\": \"朗哥\"}, \"message\": [{\"text\": \"感谢大佬帮忙, 不是用户组合777的原因 我账户退出重新登录服务器就好了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 385933691, \"group_id\": 450168397, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Web前端|Vue3|Element\", \"message_id\": \"GtUGTRcA4XsABm7oQH/+z2LWStgB\", \"raw_message\": \"感谢大佬帮忙, 不是用户组合777的原因 我账户退出重新登录服务器就好了\", \"message_type\": \"group\"}','帮忙',1,'2022-07-19 06:10:32',NULL),(690,'2022719141218137','{\"seq\": 125309, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 589121424, \"time\": 1658211138, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"长沙 404\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1063974339, \"nickname\": \"404\"}, \"message\": [{\"text\": \"大佬们快去帮妹妹解决问题吧 不然妹妹也活跃不起来了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1063974339, \"group_id\": 7561206, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue-5群\", \"message_id\": \"AHNf9j9q9cMAAel9Ix1HkGLWS0IB\", \"raw_message\": \"大佬们快去帮妹妹解决问题吧 不然妹妹也活跃不起来了\", \"message_type\": \"group\"}','解决问题',1,'2022-07-19 06:12:18',NULL),(693,'2022719142439109','{\"seq\": 1367638, \"atme\": false, \"font\": \"汉仪南宫体简\", \"rand\": 2814821849, \"time\": 1658211879, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[交流]筱傑\", \"role\": \"admin\", \"level\": 4, \"title\": \"\", \"user_id\": 840465812, \"nickname\": \"筱傑\"}, \"message\": [{\"text\": \"你看,百度解决问题多块\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 840465812, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcjIYfZQAFN5Wp8bF2WLWTicB\", \"raw_message\": \"你看,百度解决问题多块\", \"message_type\": \"group\"}','解决问题',1,'2022-07-19 06:24:39',NULL),(694,'202271915547142','{\"seq\": 60646, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 187826919, \"time\": 1658214347, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 201094486, \"nickname\": \"专业防御DDoS CC🌸中云蔡蔡\"}, \"message\": [{\"text\": \"防御ddos cc syn udp等各种攻击,先解决问题,再谈合作,联系电话:18163337427\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 201094486, \"group_id\": 955416469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小程序app开发接单群\", \"message_id\": \"OPJ/lQv8dVYAAOzmCzIC52LWV8sB\", \"raw_message\": \"防御ddos cc syn udp等各种攻击,先解决问题,再谈合作,联系电话:18163337427\", \"message_type\": \"group\"}','解决问题',1,'2022-07-19 07:05:47',NULL),(695,'202271915725159','{\"seq\": 405623, \"atme\": false, \"font\": \"宋体\", \"rand\": 1671031313, \"time\": 1658214445, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3222530688, \"nickname\": \"绝版短位邮箱\"}, \"message\": [{\"text\": \"有大神会修改源码吗?付费修改\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3222530688, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h68AT6oAABjB3Y5nqEWLWWC0B\", \"raw_message\": \"有大神会修改源码吗?付费修改\", \"message_type\": \"group\"}','付费',1,'2022-07-19 07:07:25',NULL),(696,'202271915912154','{\"seq\": 405632, \"atme\": false, \"font\": \"宋体\", \"rand\": 15515947, \"time\": 1658214552, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"female\", \"area\": \"阳泉\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3222530688, \"nickname\": \"绝版短位邮箱\"}, \"message\": [{\"text\": \"有接单的吗?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3222530688, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h68AT6oAABjCAAOzBK2LWWJgB\", \"raw_message\": \"有接单的吗?\", \"message_type\": \"group\"}','有接单的',1,'2022-07-19 07:09:12',NULL),(697,'2022719151325153','{\"seq\": 405665, \"atme\": false, \"font\": \"宋体\", \"rand\": 900342854, \"time\": 1658214805, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 2, \"sex\": \"male\", \"area\": \"\", \"card\": \"玄枵\", \"role\": \"admin\", \"level\": 1, \"title\": \"\", \"user_id\": 3187294487, \"nickname\": \"玄枵\"}, \"message\": [{\"text\": \"又干开发又掏钱\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3187294487, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6736QRcABjChNaokRmLWWZUB\", \"raw_message\": \"又干开发又掏钱\", \"message_type\": \"group\"}','掏钱',1,'2022-07-19 07:13:25',NULL),(698,'2022719152054156','{\"seq\": 12640, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3917559506, \"time\": 1658215254, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 26507863, \"nickname\": \"找自己\"}, \"message\": [{\"text\": \"var a = [\\\"a\\\",\\\"b\\\",\\\"c\\\"];\\rfor(var el in a)\\r{\\r alert(a[el]);\\r}\\r\\r有没有办法 循环的时候 el=b 的时候 不被alert 出来 重写这个for in (前提上面的代码不能修改) 愿付费解决问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 26507863, \"group_id\": 74262192, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端html/js/vue/h5/小程序\", \"message_id\": \"BG0msAGUelcAADFg6YE20mLWW1YB\", \"raw_message\": \"var a = [\\\"a\\\",\\\"b\\\",\\\"c\\\"];\\rfor(var el in a)\\r{\\r alert(a[el]);\\r}\\r\\r有没有办法 循环的时候 el=b 的时候 不被alert 出来 重写这个for in (前提上面的代码不能修改) 愿付费解决问题\", \"message_type\": \"group\"}','付费',1,'2022-07-19 07:20:54',NULL),(699,'2022719184028126','{\"seq\": 74884, \"atme\": false, \"font\": \"宋体\", \"rand\": 849273207, \"time\": 1658227228, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2872998779, \"nickname\": \"QQ\"}, \"message\": [{\"text\": \"谁会el呀 我小白 有些小问题需要请教付费\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2872998779, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdas+e3sAASSEMp7hd2LWihwB\", \"raw_message\": \"谁会el呀 我小白 有些小问题需要请教付费\", \"message_type\": \"group\"}','付费',1,'2022-07-19 10:40:28',NULL),(700,'2022719184155180','{\"seq\": 1369184, \"atme\": false, \"font\": \"宋体\", \"rand\": 610715330, \"time\": 1658227315, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"female\", \"area\": \"\", \"card\": \"SKY[交流]ICE\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2264448097, \"nickname\": \"Ice\"}, \"message\": [{\"text\": \"请问一下 我这个大二的课程 对我学前端有啥帮助么有\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2264448097/2013934898-2412414592-A5CD50E2046D4E82C0275F707C6861BB/0?term=2\", \"file\": \"a5cd50e2046d4e82c0275f707c6861bb45376-544-597.jpg\", \"type\": \"image\", \"asface\": false}], \"self_id\": 1841031740, \"user_id\": 2264448097, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcob4vGEAFORgJGbGwmLWinMB\", \"raw_message\": \"请问一下 我这个大二的课程 对我学前端有啥帮助么有[图片]\", \"message_type\": \"group\"}','帮助',1,'2022-07-19 10:41:55',NULL),(701,'2022719184254170','{\"seq\": 1369189, \"atme\": false, \"font\": \"宋体\", \"rand\": 1950391007, \"time\": 1658227374, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"unknown\", \"area\": \"苏州\", \"card\": \"SKY[阴阳]画师\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 840288725, \"nickname\": \"阴阳画师\"}, \"message\": [{\"text\": \"没帮助/斜眼笑自己找源码敲敲吧\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 840288725, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcjIVydUAFORldECa32LWiq4B\", \"raw_message\": \"没帮助/斜眼笑自己找源码敲敲吧\", \"message_type\": \"group\"}','帮助',1,'2022-07-19 10:42:54',NULL),(702,'202271918465164','{\"seq\": 406586, \"atme\": false, \"font\": \"宋体\", \"rand\": 1404846013, \"time\": 1658227565, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 19, \"sex\": \"male\", \"area\": \"美国\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2733596772, \"nickname\": \"蜡笔小新\"}, \"message\": [{\"text\": \"想去网上接单赚花钱奈何技术不够 /狂笑\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2733596772, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h66LvYGQABjQ6U7w/vWLWi20B\", \"raw_message\": \"想去网上接单赚花钱奈何技术不够 /狂笑\", \"message_type\": \"group\"}','花钱',1,'2022-07-19 10:46:05',NULL),(703,'2022719185013188','{\"seq\": 4661, \"atme\": false, \"font\": \"宋体\", \"rand\": 607577051, \"time\": 1658227813, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2802182735, \"nickname\": \"单片机设计者\"}, \"message\": [{\"text\": \"开发国产芯片,开发替代32芯片,设计原理图PCB \'KEIL5 编程个人接单价格优惠\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2802182735, \"group_id\": 124041790, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React外包交流群\", \"message_id\": \"B2S6PqcF6k8AABI1JDbj22LWjGUB\", \"raw_message\": \"开发国产芯片,开发替代32芯片,设计原理图PCB \'KEIL5 编程个人接单价格优惠\", \"message_type\": \"group\"}','人接单',1,'2022-07-19 10:50:13',NULL),(704,'2022719193140167','{\"seq\": 33633, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1538558134, \"time\": 1658230300, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAINhW7SItmLWlhwB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-19 11:31:40',NULL),(705,'2022719193136147','{\"seq\": 6466, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1330028876, \"time\": 1658230296, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABlCT0ahTGLWlhgB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-19 11:31:36',NULL),(706,'2022719193549112','{\"seq\": 1369531, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1073668620, \"time\": 1658230549, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"唐山\", \"card\": \"SKY[交流]尘墨\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3138599236, \"nickname\": \"6.06\"}, \"message\": [{\"text\": \"那个大佬帮帮忙\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3138599236, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcrsTOUQAFOW7P/7iDGLWlxUB\", \"raw_message\": \"那个大佬帮帮忙\", \"message_type\": \"group\"}','帮忙',1,'2022-07-19 11:35:49',NULL),(707,'2022719195351125','{\"seq\": 3696, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3578052493, \"time\": 1658231631, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2149095612, \"nickname\": \"letsbehappy\"}, \"message\": [{\"text\": \"来个靠谱点的,帮忙做uniapp 和aj项目对接 ,价格从优~!\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2149095612, \"group_id\": 820320773, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE-JS-手机控制\", \"message_id\": \"MOUaBYAYmLwAAA5w1US/jWLWm08B\", \"raw_message\": \"来个靠谱点的,帮忙做uniapp 和aj项目对接 ,价格从优~!\", \"message_type\": \"group\"}','帮忙',1,'2022-07-19 11:53:51',NULL),(708,'202271920129133','{\"seq\": 1369685, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1621841039, \"time\": 1658232729, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 1, \"sex\": \"male\", \"area\": \"宜春\", \"card\": \"SKY[交流]Evening\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3171550441, \"nickname\": \"Evening.🌙\"}, \"message\": [{\"text\": \"我现在就需要大佬在这帮忙解决问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3171550441, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcr0KBOkAFOZVYKtUj2LWn5kB\", \"raw_message\": \"我现在就需要大佬在这帮忙解决问题\", \"message_type\": \"group\"}','帮忙',1,'2022-07-19 12:12:09',NULL),(709,'2022719204122105','{\"seq\": 406991, \"atme\": false, \"font\": \"宋体\", \"rand\": 433994643, \"time\": 1658234482, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 5, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3442691178, \"nickname\": \"不吃\"}, \"message\": [{\"text\": \"大佬帮忙改几个问题有偿、骗子勿扰先改后付\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3442691178, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h680zTGoABjXPGd47k2LWpnIB\", \"raw_message\": \"大佬帮忙改几个问题有偿、骗子勿扰先改后付\", \"message_type\": \"group\"}','有偿',1,'2022-07-19 12:41:22',NULL),(710,'202271921912139','{\"seq\": 15101, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 837929958, \"time\": 1658236152, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 446733884, \"nickname\": \"白\"}, \"message\": [{\"text\": \"找个人 小程序分包啊 会的联系我 有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 446733884, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVghqgnjwAADr9MfHL5mLWrPgB\", \"raw_message\": \"找个人 小程序分包啊 会的联系我 有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-19 13:09:12',NULL),(711,'2022719211728182','{\"seq\": 1370121, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 274846962, \"time\": 1658236648, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[交流]白白\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 446733884, \"nickname\": \"白\"}, \"message\": [{\"text\": \"找人做小程序分包 有偿的 会的联系\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 446733884, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphchqgnjwAFOgJEGHU8mLWrugB\", \"raw_message\": \"找人做小程序分包 有偿的 会的联系\", \"message_type\": \"group\"}','有偿',1,'2022-07-19 13:17:28',NULL),(712,'202271921471104','{\"seq\": 1370231, \"atme\": false, \"font\": \"宋体\", \"rand\": 17957894, \"time\": 1658238421, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[心血]来潮\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 758768158, \"nickname\": \" \"}, \"message\": [{\"text\": \"前端解决不了的,后端可以帮忙解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 758768158, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphci054h4AFOh3ARIEBmLWtdUB\", \"raw_message\": \"前端解决不了的,后端可以帮忙解决\", \"message_type\": \"group\"}','帮忙',1,'2022-07-19 13:47:01',NULL),(713,'2022719231128104','{\"seq\": 1370654, \"atme\": false, \"font\": \"宋体\", \"rand\": 1426809750, \"time\": 1658243488, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[交流]林迪\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 805792931, \"nickname\": \"林迪\"}, \"message\": [{\"text\": \"nodejs文档居然要付费了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 805792931, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcjAHbKMAFOoeVQtjlmLWyaAB\", \"raw_message\": \"nodejs文档居然要付费了\", \"message_type\": \"group\"}','付费',1,'2022-07-19 15:11:28',NULL),(714,'202272055240121','{\"seq\": 1371127, \"atme\": false, \"font\": \"宋体\", \"rand\": 126565004, \"time\": 1658267560, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 118, \"sex\": \"male\", \"area\": \"新疆\", \"card\": \"SKY[蟑螂]恶霸\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 853453060, \"nickname\": \"蟑螂恶霸\"}, \"message\": [{\"text\": \"帮忙看下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 853453060, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcjLeqQQAFOv3B4s6jGLXJ6gB\", \"raw_message\": \"帮忙看下\", \"message_type\": \"group\"}','帮忙',1,'2022-07-19 21:52:40',NULL),(715,'202272082259133','{\"seq\": 1371456, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1643920571, \"time\": 1658276579, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 118, \"sex\": \"male\", \"area\": \"新疆\", \"card\": \"SKY[蟑螂]恶霸\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 853453060, \"nickname\": \"蟑螂恶霸\"}, \"message\": [{\"text\": \"感谢大佬们帮忙\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 853453060, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcjLeqQQAFO1AYfw8u2LXSuMB\", \"raw_message\": \"感谢大佬们帮忙\", \"message_type\": \"group\"}','帮忙',1,'2022-07-20 00:22:59',NULL),(716,'202272084123177','{\"seq\": 2723, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 538832470, \"time\": 1658277683, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2732729256, \"nickname\": \"ghh\"}, \"message\": [{\"text\": \"在线等 有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2732729256, \"group_id\": 956712240, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vben、antd、vue3、ts开发�\", \"message_id\": \"OQZFMKLiI6gAAAqjIB3uVmLXTzMB\", \"raw_message\": \"在线等 有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-20 00:41:23',NULL),(717,'202272084840186','{\"seq\": 2741, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2480485240, \"time\": 1658278120, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 33, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 811948956, \"nickname\": \"网站APP定制开发\"}, \"message\": [{\"text\": \"定制各类型网站!软件开发,APP、微信网站、手机网站、小程序,有需要的朋友可随时联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 811948956, \"group_id\": 621421868, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"C/C++/C#技术交流群\", \"message_id\": \"JQolLDBlW5wAAAq1k9kzeGLXUOgB\", \"raw_message\": \"定制各类型网站!软件开发,APP、微信网站、手机网站、小程序,有需要的朋友可随时联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-20 00:48:40',NULL),(718,'202272092539168','{\"seq\": 337757, \"atme\": false, \"font\": \"宋体\", \"rand\": 365242982, \"time\": 1658280339, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 582956590, \"nickname\": \"七窍通了六窍\"}, \"message\": [{\"text\": \"付费观看\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 582956590, \"group_id\": 558925746, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue/javascript\", \"message_id\": \"IVCHsiK/Ni4ABSddFcUqZmLXWZMB\", \"raw_message\": \"付费观看\", \"message_type\": \"group\"}','付费',1,'2022-07-20 01:25:39',NULL),(719,'20227209271119','{\"seq\": 408261, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2837354946, \"time\": 1658280421, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 120, \"sex\": \"male\", \"area\": \"\", \"card\": \"李嘉图\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1102517143, \"nickname\": \"李嘉图\"}, \"message\": [{\"text\": \"要花钱吗?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1102517143, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h60G3E5cABjrFqR6ZwmLXWeUB\", \"raw_message\": \"要花钱吗?\", \"message_type\": \"group\"}','花钱',1,'2022-07-20 01:27:01',NULL),(720,'202272093457163','{\"seq\": 83957, \"atme\": false, \"font\": \"宋体\", \"rand\": 2028531622, \"time\": 1658280896, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"豆子\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2082423304, \"nickname\": \"豆子\"}, \"message\": [{\"text\": \"站在最顶上的那一堆人都是花钱而且还能挣钱的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2082423304, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE 前端划水群\", \"message_id\": \"J/+MYHwfQggAAUf1eOjvpmLXW8AB\", \"raw_message\": \"站在最顶上的那一堆人都是花钱而且还能挣钱的\", \"message_type\": \"group\"}','花钱',1,'2022-07-20 01:34:57',NULL),(721,'202272095113150','{\"seq\": 97708, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1531305162, \"time\": 1658281873, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 42246692, \"nickname\": \"行者\"}, \"message\": [{\"text\": \"hbuilderX 真机调试 找不到手机 有偿找大佬处理!\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 42246692, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp9wKEoiQAAX2sW0XcymLXX5EB\", \"raw_message\": \"hbuilderX 真机调试 找不到手机 有偿找大佬处理!\", \"message_type\": \"group\"}','有偿',1,'2022-07-20 01:51:13',NULL),(722,'202272010151101','{\"seq\": 97711, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 784771095, \"time\": 1658282511, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 42246692, \"nickname\": \"行者\"}, \"message\": [{\"text\": \"hbuilderX 真机调试 找不到手机 有偿找大佬处理!后付款!!!\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 42246692, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp9wKEoiQAAX2vLsaoF2LXYg8B\", \"raw_message\": \"hbuilderX 真机调试 找不到手机 有偿找大佬处理!后付款!!!\", \"message_type\": \"group\"}','有偿',1,'2022-07-20 02:01:51',NULL),(723,'202272010820168','{\"seq\": 28311, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 995584945, \"time\": 1658282900, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"\", \"card\": \"长沙-前端-大白\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 158233961, \"nickname\": \"Bailee ¹º¹ ¹¹º\"}, \"message\": [{\"text\": \"求助,官网的例子:\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/158233961/650471018-2458063887-18CC6E17E69B667ABDCFFABF2DCF9D4E/0?term=2\", \"file\": \"18cc6e17e69b667abdcffabf2dcf9d4e158950-1036-1315.jpg\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r报这个错:\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/158233961/650471018-2712864815-6D0ABB4478A5B1B2C9185CD59510A294/0?term=2\", \"file\": \"6d0abb4478a5b1b2c9185cd59510a294125433-1603-215.jpg\", \"type\": \"image\", \"asface\": false}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/158233961/650471018-2150180741-899C0D7039A1322B27B403D8F082B4FA/0?term=2\", \"file\": \"899c0d7039a1322b27b403d8f082b4fa197036-1591-1780.jpg\", \"type\": \"image\", \"asface\": false}], \"self_id\": 1841031740, \"user_id\": 158233961, \"group_id\": 650471018, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"微前端—qiankun,Web讨\", \"message_id\": \"JsVmagludWkAAG6XO1drsWLXY5QB\", \"raw_message\": \"求助,官网的例子:[图片]\\r报这个错:[图片][图片]\", \"message_type\": \"group\"}','求助',1,'2022-07-20 02:08:20',NULL),(724,'202272011427183','{\"seq\": 162649, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4284356698, \"time\": 1658288528, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1577350959, \"nickname\": \"风霜何故\"}, \"message\": [{\"text\": \"全国首家APP免费开发,技术风投,战略合作。\\r行业内独角兽打造\\r帮助中小型企业互联网转型!\\r专业做软件开发\\r知识付费APP\\r教育平台APP\\r同城服务APP\\r社交直播APP\\r家政APP\\r悬赏任务发布APP\\r多用户商城APP\\r全行业APP平台定制开发\\r华为云信息安全服务\\r仿爱聊交友APP开发\\r三方支付接口\\r爱搭支付对接\\r微信:YIZHIAINI-ZSJ\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1577350959, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O414Edy8AAntZ/14YWmLXeZAB\", \"raw_message\": \"全国首家APP免费开发,技术风投,战略合作。\\r行业内独角兽打造\\r帮助中小型企业互联网转型!\\r专业做软件开发\\r知识付费APP\\r教育平台APP\\r同城服务APP\\r社交直播APP\\r家政APP\\r悬赏任务发布APP\\r多用户商城APP\\r全行业APP平台定制开发\\r华为云信息安全服务\\r仿爱聊交友APP开发\\r三方支付接口\\r爱搭支付对接\\r微信:YIZHIAINI-ZSJ\", \"message_type\": \"group\"}','付费',1,'2022-07-20 03:42:07',NULL),(725,'2022720155611112','{\"seq\": 162668, \"atme\": false, \"font\": \"宋体\", \"rand\": 1472857544, \"time\": 1658303772, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1801219600, \"nickname\": \"云\"}, \"message\": [{\"text\": \"这个小程序有能做的联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1801219600, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O42tcbhAAAntsV8oFyGLXtRwB\", \"raw_message\": \"这个小程序有能做的联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-20 07:56:11',NULL),(726,'202272015569143','{\"seq\": 410494, \"atme\": false, \"font\": \"宋体\", \"rand\": 733208853, \"time\": 1658303770, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 2, \"sex\": \"male\", \"area\": \"\", \"card\": \"玄枵\", \"role\": \"admin\", \"level\": 1, \"title\": \"\", \"user_id\": 3187294487, \"nickname\": \"玄枵\"}, \"message\": [{\"text\": \"哦,我的上帝啊,如果你告诉我这个问题的话,我会很高兴的,如果我是说如果的话,如果你愿意帮助如浮萍一样卑微的我,我会很感激你的,愿上帝保佑你\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3187294487, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6736QRcABkN+K7PhFWLXtRoB\", \"raw_message\": \"哦,我的上帝啊,如果你告诉我这个问题的话,我会很高兴的,如果我是说如果的话,如果你愿意帮助如浮萍一样卑微的我,我会很感激你的,愿上帝保佑你\", \"message_type\": \"group\"}','帮助',1,'2022-07-20 07:56:09',NULL),(727,'20227201626173','{\"seq\": 277810, \"atme\": false, \"font\": \"宋体\", \"rand\": 361938229, \"time\": 1658304127, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"出手域名vue4.com\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 710144136, \"nickname\": \"溴乙烷\"}, \"message\": [{\"text\": \"楼上能做的我也能做,有需要的老板可以先联系我,因为我很卷\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 710144136, \"group_id\": 692522608, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端Vue开发程序员贰\", \"message_id\": \"KUcOcCpT8IgABD0yFZK9NWLXtn8B\", \"raw_message\": \"楼上能做的我也能做,有需要的老板可以先联系我,因为我很卷\", \"message_type\": \"group\"}','联系我',1,'2022-07-20 08:02:06',NULL),(728,'202272016729171','{\"seq\": 57755, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 90171624, \"time\": 1658304450, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 619550172, \"nickname\": \"水果榨汁机\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/619550172/855139333-2151870342-A821D2C87CD79EA0FD6A05AE76F845C6/0?term=2\", \"file\": \"a821d2c87cd79ea0fd6a05ae76f845c639031-492-518.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"有个报错,找不到那个位置了, 提示值应该是字符串,数字,实际上是数组,帮忙看一下问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 619550172, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBSTtldwAAOGbBV/o6GLXt8IB\", \"raw_message\": \"[图片]有个报错,找不到那个位置了, 提示值应该是字符串,数字,实际上是数组,帮忙看一下问题\", \"message_type\": \"group\"}','帮忙',1,'2022-07-20 08:07:29',NULL),(729,'202272016169138','{\"seq\": 13867, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2289930289, \"time\": 1658304969, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3554667891, \"nickname\": \"柠檬酸.\"}, \"message\": [{\"text\": \"106短信&400电话:\\r【106三网短信群发】可发一切正规内容\\r\\r法务咨询、停息挂账、POS机,保健品,招聘,地产,教育,营销商超,游戏,电商,促销、建材、4S店短信等都可发\\r\\r【400电话】免月租,免选号费,另赠送9大基础功能+2项增值服务\\r\\r【空号检测】,全网超低价有需要的可以联系我哦 免费测试\\r\\r微信:yq1998061 电话:17355185042\\r\\r诚招代理,有意向的欢迎来聊,零成本\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3554667891, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VNPf7XMAADYriH2QMWLXuckB\", \"raw_message\": \"106短信&400电话:\\r【106三网短信群发】可发一切正规内容\\r\\r法务咨询、停息挂账、POS机,保健品,招聘,地产,教育,营销商超,游戏,电商,促销、建材、4S店短信等都可发\\r\\r【400电话】免月租,免选号费,另赠送9大基础功能+2项增值服务\\r\\r【空号检测】,全网超低价有需要的可以联系我哦 免费测试\\r\\r微信:yq1998061 电话:17355185042\\r\\r诚招代理,有意向的欢迎来聊,零成本\", \"message_type\": \"group\"}','联系我',1,'2022-07-20 08:16:09',NULL),(730,'2022720161845181','{\"seq\": 410675, \"atme\": false, \"font\": \"宋体\", \"rand\": 304436256, \"time\": 1658305126, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 1, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 597035281, \"nickname\": \"加钱居士\"}, \"message\": [{\"text\": \"有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 597035281, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6yOWCREABkQzEiVUIGLXumYB\", \"raw_message\": \"有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-20 08:18:45',NULL),(731,'202272016216135','{\"seq\": 1373180, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3244560568, \"time\": 1658305267, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[交流]Mars\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 645814810, \"nickname\": \"Mars hcy\"}, \"message\": [{\"text\": \"谁知道表格打印内容被拆分的问题,有偿\\r\\r 谁知道表格打印内容被拆分的问题,有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 645814810, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphciZ+WhoAFPP8wWQQuGLXuvMB\", \"raw_message\": \"谁知道表格打印内容被拆分的问题,有偿\\r\\r 谁知道表格打印内容被拆分的问题,有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-20 08:21:06',NULL),(732,'2022720162510180','{\"seq\": 526672, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1703658339, \"time\": 1658305510, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 45, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1487810097, \"nickname\": \"女二叔(FuncleTwo)\"}, \"message\": [{\"text\": \"你们都不帮我解决问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1487810097, \"group_id\": 687948914, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue、Nodejs 开发交流\", \"message_id\": \"KQFEcliuLjEACAlQZYvDY2LXu+YB\", \"raw_message\": \"你们都不帮我解决问题\", \"message_type\": \"group\"}','解决问题',1,'2022-07-20 08:25:10',NULL),(733,'2022720163925110','{\"seq\": 57799, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3723417745, \"time\": 1658306366, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1710994846, \"nickname\": \"无耻混蛋\"}, \"message\": [{\"text\": \"大家都是互相帮助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1710994846, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBWX7tZ4AAOHH3e7YkWLXvz4B\", \"raw_message\": \"大家都是互相帮助\", \"message_type\": \"group\"}','帮助',1,'2022-07-20 08:39:25',NULL),(734,'202272016492147','{\"seq\": 410906, \"atme\": false, \"font\": \"宋体\", \"rand\": 157042079, \"time\": 1658306942, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3099609494, \"nickname\": \"TN—HCYL\"}, \"message\": [{\"text\": \"兄弟们,江湖救急,有偿请求帮忙,\\nmySQL数据库后端有个消息推送前端功能,想在原基础上增加个文字内容定时推送,能做的兄弟联系我\", \"type\": \"text\"}, {\"id\": 118, \"text\": \"抱拳\", \"type\": \"face\"}], \"self_id\": 1841031740, \"user_id\": 3099609494, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h67jASZYABkUaCVxFn2LXwX4B\", \"raw_message\": \"兄弟们,江湖救急,有偿请求帮忙,\\nmySQL数据库后端有个消息推送前端功能,想在原基础上增加个文字内容定时推送,能做的兄弟联系我[抱拳]\", \"message_type\": \"group\"}','有偿',1,'2022-07-20 08:49:02',NULL),(735,'2022720165020188','{\"seq\": 32726, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3399030253, \"time\": 1658307021, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 28, \"sex\": \"male\", \"area\": \"六安\", \"card\": \"钓鱼人\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2567716270, \"nickname\": \"Aaron\"}, \"message\": [{\"text\": \"不然出问题要改,还额外收费,花钱不能给自己找罪受\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2567716270, \"group_id\": 678225870, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue前端小白交流群\", \"message_id\": \"KGznzpkMPa4AAH/WypkV7WLXwc0B\", \"raw_message\": \"不然出问题要改,还额外收费,花钱不能给自己找罪受\", \"message_type\": \"group\"}','花钱',1,'2022-07-20 08:50:20',NULL),(736,'2022720172010138','{\"seq\": 411019, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 385688220, \"time\": 1658308811, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"江西\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1099508302, \"nickname\": \"无梦可做\"}, \"source\": {\"seq\": 411011, \"rand\": 1470776432, \"time\": 1658308754, \"message\": \"原生js和nodejs有什么区别呀?\", \"user_id\": 2977124310}, \"message\": [{\"qq\": 2977124310, \"text\": \"@默歌\", \"type\": \"at\"}, {\"text\": \" js官网不需要付费,nodejs需要付费\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1099508302, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h60GJKk4ABkWLFv0inGLXyMsB\", \"raw_message\": \"@默歌 js官网不需要付费,nodejs需要付费\", \"message_type\": \"group\"}','付费',1,'2022-07-20 09:20:10',NULL),(737,'2022720172036110','{\"seq\": 411025, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4248456251, \"time\": 1658308837, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 120, \"sex\": \"male\", \"area\": \"\", \"card\": \"李嘉图\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1102517143, \"nickname\": \"李嘉图\"}, \"message\": [{\"text\": \"现在node中文网看文档都要付费\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1102517143, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h60G3E5cABkWR/TpMO2LXyOUB\", \"raw_message\": \"现在node中文网看文档都要付费\", \"message_type\": \"group\"}','付费',1,'2022-07-20 09:20:36',NULL),(738,'2022720174232187','{\"seq\": 1373417, \"atme\": false, \"font\": \"宋体\", \"rand\": 206188181, \"time\": 1658310152, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 30, \"sex\": \"male\", \"area\": \"湘潭\", \"card\": \"SKY[交流]轻为\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 328484091, \"nickname\": \"轻 为\"}, \"message\": [{\"text\": \" \", \"type\": \"text\"}, {\"qq\": 2737866689, \"text\": \"@SKY[爱小]仙仙\", \"type\": \"at\"}, {\"text\": \" 帮忙问问\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 328484091, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphchOURPsAFPTpDEoulWLXzggB\", \"raw_message\": \" @SKY[爱小]仙仙 帮忙问问\", \"message_type\": \"group\"}','帮忙',1,'2022-07-20 09:42:32',NULL),(739,'2022720175954183','{\"seq\": 33659, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 601818522, \"time\": 1658311194, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIN7I98FmmLX0hoB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-20 09:59:54',NULL),(740,'202272018137165','{\"seq\": 6479, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 537262117, \"time\": 1658311297, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABlPIAX4JWLX0oEB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-20 10:01:37',NULL),(741,'202272018445173','{\"seq\": 13875, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 539935413, \"time\": 1658311485, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3554667891, \"nickname\": \"柠檬酸.\"}, \"message\": [{\"text\": \"106短信&400电话:\\r【106三网短信群发】可发一切正规内容\\r\\r法务咨询、停息挂账、POS机,保健品,招聘,地产,教育,营销商超,游戏,电商,促销、建材、4S店短信等都可发\\r\\r【400电话】免月租,免选号费,另赠送9大基础功能+2项增值服务\\r\\r【空号检测】,全网超低价有需要的可以联系我哦 免费测试\\r\\r微信:yq1998061 电话:17355185042\\r\\r诚招代理,有意向的欢迎来聊,零成本\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3554667891, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VNPf7XMAADYzIC7CtWLX0z0B\", \"raw_message\": \"106短信&400电话:\\r【106三网短信群发】可发一切正规内容\\r\\r法务咨询、停息挂账、POS机,保健品,招聘,地产,教育,营销商超,游戏,电商,促销、建材、4S店短信等都可发\\r\\r【400电话】免月租,免选号费,另赠送9大基础功能+2项增值服务\\r\\r【空号检测】,全网超低价有需要的可以联系我哦 免费测试\\r\\r微信:yq1998061 电话:17355185042\\r\\r诚招代理,有意向的欢迎来聊,零成本\", \"message_type\": \"group\"}','联系我',1,'2022-07-20 10:04:45',NULL),(742,'2022720181618138','{\"seq\": 75443, \"atme\": false, \"font\": \"宋体\", \"rand\": 1503172621, \"time\": 1658312179, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 826560898, \"nickname\": \"p\"}, \"message\": [{\"text\": \"找人帮忙写一条正则表达式\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 826560898, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdTFEUYIAASazWZiYDWLX1fMB\", \"raw_message\": \"找人帮忙写一条正则表达式\", \"message_type\": \"group\"}','帮忙',1,'2022-07-20 10:16:18',NULL),(743,'2022720184740107','{\"seq\": 15363, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1236046305, \"time\": 1658314061, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3097199009, \"nickname\": \"ICP EDI 网文 广播 软开\"}, \"message\": [{\"text\": \"需要ICP、EDI、广播证等许可证的朋友联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3097199009, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVgribgaEAADwDSayR4WLX3U0B\", \"raw_message\": \"需要ICP、EDI、广播证等许可证的朋友联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-20 10:47:40',NULL),(744,'2022720184735114','{\"seq\": 60718, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1980014506, \"time\": 1658314056, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"\", \"card\": \"接单-成都-ICP EDI 广播 软著\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3097199009, \"nickname\": \"ICP EDI 网文 广播 软开\"}, \"message\": [{\"text\": \"需要ICP、EDI、广播证等许可证的朋友联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3097199009, \"group_id\": 955416469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小程序app开发接单群\", \"message_id\": \"OPJ/lbibgaEAAO0udgSfqmLX3UgB\", \"raw_message\": \"需要ICP、EDI、广播证等许可证的朋友联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-20 10:47:35',NULL),(745,'2022720192139188','{\"seq\": 57935, \"atme\": false, \"font\": \"宋体\", \"rand\": 1811638906, \"time\": 1658316099, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1532786672, \"nickname\": \"九月初六\"}, \"message\": [{\"text\": \"建议花钱\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1532786672, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBVtcd/AAAOJPa/tqemLX5UMB\", \"raw_message\": \"建议花钱\", \"message_type\": \"group\"}','花钱',1,'2022-07-20 11:21:39',NULL),(746,'2022720203055122','{\"seq\": 497043, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4231511519, \"time\": 1658320256, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"male\", \"area\": \"江门\", \"card\": \"乐色\", \"role\": \"member\", \"level\": 6, \"title\": \"\", \"user_id\": 517799596, \"nickname\": \"零°\"}, \"message\": [{\"text\": \"哦,就是鹅杂当年花钱买人然后发展一大批这样的臭鱼烂虾,可惜当初没人跟管社区买菜一样管\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 517799596, \"group_id\": 387395778, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Element UI Vue 学习交流\", \"message_id\": \"Fxcwwh7c/qwAB5WT/De932LX9YAB\", \"raw_message\": \"哦,就是鹅杂当年花钱买人然后发展一大批这样的臭鱼烂虾,可惜当初没人跟管社区买菜一样管\", \"message_type\": \"group\"}','花钱',1,'2022-07-20 12:30:55',NULL),(747,'202272020474141','{\"seq\": 1374667, \"atme\": false, \"font\": \"宋体\", \"rand\": 1993806921, \"time\": 1658321225, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"邢台\", \"card\": \"SKY[交流]Random\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 992789748, \"nickname\": \"Math.random\"}, \"message\": [{\"text\": \"有人接单吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 992789748, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcjssxPQAFPnLdtcUSWLX+UkB\", \"raw_message\": \"有人接单吗\", \"message_type\": \"group\"}','人接单',1,'2022-07-20 12:47:04',NULL),(748,'202272020483156','{\"seq\": 1374684, \"atme\": false, \"font\": \"宋体\", \"rand\": 4088455854, \"time\": 1658321284, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 4, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[交流]征程\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 476040158, \"nickname\": \"征程\"}, \"message\": [{\"text\": \" 有人帮我弄一下VUE插件吗?有偿服务 只要修改一下登录接口就可以了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 476040158, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphchxfy94AFPnc87DirmLX+YQB\", \"raw_message\": \" 有人帮我弄一下VUE插件吗?有偿服务 只要修改一下登录接口就可以了\", \"message_type\": \"group\"}','有偿',1,'2022-07-20 12:48:03',NULL),(749,'202272021208187','{\"seq\": 1374898, \"atme\": false, \"font\": \"宋体\", \"rand\": 1208299452, \"time\": 1658323209, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"七台河\", \"card\": \"SKY[交流]存在\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1187822027, \"nickname\": \"存在\"}, \"message\": [{\"text\": \"明天联系我。\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1187822027, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphckbMucsAFPqySAUvvGLYAQkB\", \"raw_message\": \"明天联系我。\", \"message_type\": \"group\"}','联系我',1,'2022-07-20 13:20:08',NULL),(750,'2022720212752105','{\"seq\": 14501, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4178409834, \"time\": 1658323673, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"female\", \"area\": \"武汉\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 798491423, \"nickname\": \"白色彩带\"}, \"message\": [{\"text\": \"这是为什么,求大佬帮助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 798491423, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaC+YAx8AADil+Q15amLYAtkB\", \"raw_message\": \"这是为什么,求大佬帮助\", \"message_type\": \"group\"}','帮助',1,'2022-07-20 13:27:52',NULL),(751,'2022720213843132','{\"seq\": 14513, \"atme\": false, \"font\": \"宋体\", \"rand\": 1031331402, \"time\": 1658324324, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 16, \"sex\": \"male\", \"area\": \"阿尔及利亚\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3541037829, \"nickname\": \"[QQ红包]恭喜发财\"}, \"message\": [{\"text\": \"求助,为啥我打印这个musicnum是undefined\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3541037829, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaNMP8wUAADixPXjeSmLYBWQB\", \"raw_message\": \"求助,为啥我打印这个musicnum是undefined\", \"message_type\": \"group\"}','求助',1,'2022-07-20 13:38:43',NULL),(752,'202272022454138','{\"seq\": 6483, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1226159543, \"time\": 1658325895, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABlTSRW1t2LYC4cB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-20 14:04:54',NULL),(753,'20227202259141','{\"seq\": 33662, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1395863633, \"time\": 1658325910, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIN+UzMwUWLYC5YB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-20 14:05:09',NULL),(754,'202272022505188','{\"seq\": 412511, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1913831726, \"time\": 1658328606, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"\", \"card\": \"Setruth\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1607908758, \"nickname\": \"Setruth\"}, \"message\": [{\"text\": \"https://www.bilibili.com/video/bv1oW4y117AK?vd_source=f4fb13c76dd18c7a8d707bdb58d92298 帮忙点个赞大佬们\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/1607908758/599777771-2982266829-E40B08EBF912995283A9ED017C84CDE8/0?term=2\", \"file\": \"e40b08ebf912995283a9ed017c84cde8940-56-52.jpg\", \"type\": \"image\", \"asface\": false}], \"self_id\": 1841031740, \"user_id\": 1607908758, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h61/WvZYABktfchLBLmLYFh4B\", \"raw_message\": \"https://www.bilibili.com/video/bv1oW4y117AK?vd_source=f4fb13c76dd18c7a8d707bdb58d92298 帮忙点个赞大佬们[图片]\", \"message_type\": \"group\"}','帮忙',1,'2022-07-20 14:50:05',NULL),(755,'2022720225451110','{\"seq\": 60727, \"atme\": false, \"font\": \"宋体\", \"rand\": 1548300034, \"time\": 1658328892, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 28, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 470159995, \"nickname\": \"大鹏\"}, \"message\": [{\"text\": \"牛子联盟app或者其他牛牛的app不搭建找一个直接能用的,带控的,带后台的,联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 470159995, \"group_id\": 955416469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小程序app开发接单群\", \"message_id\": \"OPJ/lRwGEnsAAO03XEkvAmLYFzwB\", \"raw_message\": \"牛子联盟app或者其他牛牛的app不搭建找一个直接能用的,带控的,带后台的,联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-20 14:54:51',NULL),(756,'202272172047157','{\"seq\": 4152, \"atme\": false, \"font\": \"宋体\", \"rand\": 144703856, \"time\": 1658359247, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2392283262, \"nickname\": \"阿志54\"}, \"message\": [{\"text\": \"亲们,目前我司在找小伙伴,长期合作,项目不复杂,阶段付费,待遇优厚。\\n有想接外包,可以微信搜索公众号:猿互联科技,关注留言你的技能方便联系哈。\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2392283262, \"group_id\": 1092036641, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"react/vue/小程序/前端\", \"message_id\": \"QRcoIY6XWH4AABA4CKABcGLYjc8B\", \"raw_message\": \"亲们,目前我司在找小伙伴,长期合作,项目不复杂,阶段付费,待遇优厚。\\n有想接外包,可以微信搜索公众号:猿互联科技,关注留言你的技能方便联系哈。\", \"message_type\": \"group\"}','付费',1,'2022-07-20 23:20:47',NULL),(757,'202272173626122','{\"seq\": 1376101, \"atme\": false, \"font\": \"宋体\", \"rand\": 674363480, \"time\": 1658360187, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 4, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[交流]征程\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 476040158, \"nickname\": \"征程\"}, \"message\": [{\"text\": \" 有偿找高手帮我修复一下 vue插件,修改一下登录接口就可以了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 476040158, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphchxfy94AFP9lKDH4WGLYkXsB\", \"raw_message\": \" 有偿找高手帮我修复一下 vue插件,修改一下登录接口就可以了\", \"message_type\": \"group\"}','有偿',1,'2022-07-20 23:36:26',NULL),(758,'202272173815104','{\"seq\": 14587, \"atme\": false, \"font\": \"宋体\", \"rand\": 450540880, \"time\": 1658360295, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 4, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 476040158, \"nickname\": \"征程\"}, \"message\": [{\"qq\": 1549547650, \"text\": \"@阿都\", \"type\": \"at\"}, {\"text\": \" 有偿找高手帮我修复一下 vue插件,修改一下登录接口就可以了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 476040158, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaBxfy94AADj7Gtq1UGLYkecB\", \"raw_message\": \"@阿都 有偿找高手帮我修复一下 vue插件,修改一下登录接口就可以了\", \"message_type\": \"group\"}','有偿',1,'2022-07-20 23:38:15',NULL),(759,'202272173816127','{\"seq\": 14588, \"atme\": false, \"font\": \"宋体\", \"rand\": 3779768710, \"time\": 1658360297, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 4, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 476040158, \"nickname\": \"征程\"}, \"message\": [{\"text\": \" 有偿找高手帮我修复一下 vue插件,修改一下登录接口就可以了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 476040158, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaBxfy94AADj84UqxhmLYkekB\", \"raw_message\": \" 有偿找高手帮我修复一下 vue插件,修改一下登录接口就可以了\", \"message_type\": \"group\"}','有偿',1,'2022-07-20 23:38:16',NULL),(760,'202272173837159','{\"seq\": 1376108, \"atme\": false, \"font\": \"宋体\", \"rand\": 3107796846, \"time\": 1658360317, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 4, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[交流]征程\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 476040158, \"nickname\": \"征程\"}, \"message\": [{\"text\": \" 有偿找高手帮我修复一下 vue插件,修改一下登录接口就可以了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 476040158, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphchxfy94AFP9suT03bmLYkf0B\", \"raw_message\": \" 有偿找高手帮我修复一下 vue插件,修改一下登录接口就可以了\", \"message_type\": \"group\"}','有偿',1,'2022-07-20 23:38:37',NULL),(761,'202272183213181','{\"seq\": 13901, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2920458064, \"time\": 1658363534, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3554667891, \"nickname\": \"柠檬酸.\"}, \"message\": [{\"text\": \"106短信&400电话:\\r【106三网短信群发】可发一切正规内容\\r\\r法务咨询、停息挂账、POS机,保健品,招聘,地产,教育,营销商超,游戏,电商,促销、建材、4S店短信等都可发\\r\\r【400电话】免月租,免选号费,另赠送9大基础功能+2项增值服务\\r\\r【空号检测】,全网超低价有需要的可以联系我哦 免费测试\\r\\r微信:yq1998061 电话:17355185042\\r\\r诚招代理,有意向的欢迎来聊,零成本\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3554667891, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VNPf7XMAADZNrhKnUGLYno4B\", \"raw_message\": \"106短信&400电话:\\r【106三网短信群发】可发一切正规内容\\r\\r法务咨询、停息挂账、POS机,保健品,招聘,地产,教育,营销商超,游戏,电商,促销、建材、4S店短信等都可发\\r\\r【400电话】免月租,免选号费,另赠送9大基础功能+2项增值服务\\r\\r【空号检测】,全网超低价有需要的可以联系我哦 免费测试\\r\\r微信:yq1998061 电话:17355185042\\r\\r诚招代理,有意向的欢迎来聊,零成本\", \"message_type\": \"group\"}','联系我',1,'2022-07-21 00:32:13',NULL),(762,'20227219444154','{\"seq\": 1376187, \"atme\": false, \"font\": \"宋体\", \"rand\": 661940742, \"time\": 1658365484, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"female\", \"area\": \"广东\", \"card\": \"SKY[交流]Picoi\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2305230064, \"nickname\": \"picoincat\"}, \"message\": [{\"text\": \"求帮忙\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2305230064, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcolnBPAAFP+7J3RqBmLYpiwB\", \"raw_message\": \"求帮忙\", \"message_type\": \"group\"}','帮忙',1,'2022-07-21 01:04:44',NULL),(763,'202272111659154','{\"seq\": 162726, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1747621505, \"time\": 1658372821, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1577350959, \"nickname\": \"风霜何故\"}, \"message\": [{\"text\": \"全国首家APP免费开发,技术风投,战略合作。\\r行业内独角兽打造\\r帮助中小型企业互联网转型!\\r专业做软件开发\\r知识付费APP\\r教育平台APP\\r同城服务APP\\r社交直播APP\\r家政APP\\r悬赏任务发布APP\\r多用户商城APP\\r全行业APP平台定制开发\\r华为云信息安全服务\\r仿爱聊交友APP开发\\r三方支付接口\\r爱搭支付对接\\r微信:YIZHIAINI-ZSJ\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1577350959, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O414Edy8AAnumaCqWgWLYwtUB\", \"raw_message\": \"全国首家APP免费开发,技术风投,战略合作。\\r行业内独角兽打造\\r帮助中小型企业互联网转型!\\r专业做软件开发\\r知识付费APP\\r教育平台APP\\r同城服务APP\\r社交直播APP\\r家政APP\\r悬赏任务发布APP\\r多用户商城APP\\r全行业APP平台定制开发\\r华为云信息安全服务\\r仿爱聊交友APP开发\\r三方支付接口\\r爱搭支付对接\\r微信:YIZHIAINI-ZSJ\", \"message_type\": \"group\"}','付费',1,'2022-07-21 03:06:59',NULL),(764,'202272113213109','{\"seq\": 14710, \"atme\": false, \"font\": \"宋体\", \"rand\": 337823855, \"time\": 1658379732, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1739309337, \"nickname\": \"不忘初心 .\"}, \"message\": [{\"text\": \"vue和jar项目部署 那位大佬来有偿帮忙\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1739309337, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaGerwRkAADl2FCLIb2LY3dQB\", \"raw_message\": \"vue和jar项目部署 那位大佬来有偿帮忙\", \"message_type\": \"group\"}','有偿',1,'2022-07-21 05:02:13',NULL),(765,'202272113213186','{\"seq\": 14710, \"atme\": false, \"font\": \"宋体\", \"rand\": 337823855, \"time\": 1658379732, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1739309337, \"nickname\": \"不忘初心 .\"}, \"message\": [{\"text\": \"vue和jar项目部署 那位大佬来有偿帮忙\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1739309337, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaGerwRkAADl2FCLIb2LY3dQB\", \"raw_message\": \"vue和jar项目部署 那位大佬来有偿帮忙\", \"message_type\": \"group\"}','有偿',1,'2022-07-21 05:02:13',NULL),(766,'202272113316163','{\"seq\": 125348, \"atme\": false, \"font\": \"宋体\", \"rand\": 1637419497, \"time\": 1658379796, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1739309337, \"nickname\": \"不忘初心 .\"}, \"message\": [{\"text\": \"vue和jar项目部署 那位大佬来有偿帮忙\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1739309337, \"group_id\": 939900655, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue/react/uniapp前端后端\", \"message_id\": \"OAW+72erwRkAAemkYZkJ6WLY3hQB\", \"raw_message\": \"vue和jar项目部署 那位大佬来有偿帮忙\", \"message_type\": \"group\"}','有偿',1,'2022-07-21 05:03:16',NULL),(767,'2022721131443179','{\"seq\": 957082, \"atme\": false, \"font\": \"宋体\", \"rand\": 233113814, \"time\": 1658380483, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3381775672, \"nickname\": \"喵喵\"}, \"message\": [{\"text\": \"可以跟我说(要叫我或者at我,我才知道哦):\\r\\n提醒帮助\\r\\n上海天气 上海明天天气\\r\\n笑话\\r\\n摸鱼 摸鱼帮助 节假日\\r\\n图 风景图 动漫图 美女图 妹子图\\r\\n随机点数\\r\\n美音hello 英音hello\\r\\n\\r\\n另外,我可以执行Racket代码哦\\r\\n 有以下几种发送给我的方式:\\r\\n a. 如果代码是以一个完整的表达式(如(+ 1 2))开始,可以直接发送。\\r\\n b. at我,然后跟着代码。\\r\\n c. 直接发送 #rkt <代码> 这个输出会带源代码的消息的回复\\r\\n d. 直接发送 !rkt <代码> 这个输出不带源代码的消息的回复\\r\\n 可以输出图像,绘图函数详见Racket的2htdp/image、racket/draw等模块的文档\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3381775672, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB8mRzTgADpqaDeUI1mLY4MMB\", \"raw_message\": \"可以跟我说(要叫我或者at我,我才知道哦):\\r\\n提醒帮助\\r\\n上海天气 上海明天天气\\r\\n笑话\\r\\n摸鱼 摸鱼帮助 节假日\\r\\n图 风景图 动漫图 美女图 妹子图\\r\\n随机点数\\r\\n美音hello 英音hello\\r\\n\\r\\n另外,我可以执行Racket代码哦\\r\\n 有以下几种发送给我的方式:\\r\\n a. 如果代码是以一个完整的表达式(如(+ 1 2))开始,可以直接发送。\\r\\n b. at我,然后跟着代码。\\r\\n c. 直接发送 #rkt <代码> 这个输出会带源代码的消息的回复\\r\\n d. 直接发送 !rkt <代码> 这个输出不带源代码的消息的回复\\r\\n 可以输出图像,绘图函数详见Racket的2htdp/image、racket/draw等模块的文档\", \"message_type\": \"group\"}','帮助',1,'2022-07-21 05:14:43',NULL),(768,'2022721131443100','{\"seq\": 957082, \"atme\": false, \"font\": \"宋体\", \"rand\": 233113814, \"time\": 1658380483, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3381775672, \"nickname\": \"喵喵\"}, \"message\": [{\"text\": \"可以跟我说(要叫我或者at我,我才知道哦):\\r\\n提醒帮助\\r\\n上海天气 上海明天天气\\r\\n笑话\\r\\n摸鱼 摸鱼帮助 节假日\\r\\n图 风景图 动漫图 美女图 妹子图\\r\\n随机点数\\r\\n美音hello 英音hello\\r\\n\\r\\n另外,我可以执行Racket代码哦\\r\\n 有以下几种发送给我的方式:\\r\\n a. 如果代码是以一个完整的表达式(如(+ 1 2))开始,可以直接发送。\\r\\n b. at我,然后跟着代码。\\r\\n c. 直接发送 #rkt <代码> 这个输出会带源代码的消息的回复\\r\\n d. 直接发送 !rkt <代码> 这个输出不带源代码的消息的回复\\r\\n 可以输出图像,绘图函数详见Racket的2htdp/image、racket/draw等模块的文档\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 3381775672, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB8mRzTgADpqaDeUI1mLY4MMB\", \"raw_message\": \"可以跟我说(要叫我或者at我,我才知道哦):\\r\\n提醒帮助\\r\\n上海天气 上海明天天气\\r\\n笑话\\r\\n摸鱼 摸鱼帮助 节假日\\r\\n图 风景图 动漫图 美女图 妹子图\\r\\n随机点数\\r\\n美音hello 英音hello\\r\\n\\r\\n另外,我可以执行Racket代码哦\\r\\n 有以下几种发送给我的方式:\\r\\n a. 如果代码是以一个完整的表达式(如(+ 1 2))开始,可以直接发送。\\r\\n b. at我,然后跟着代码。\\r\\n c. 直接发送 #rkt <代码> 这个输出会带源代码的消息的回复\\r\\n d. 直接发送 !rkt <代码> 这个输出不带源代码的消息的回复\\r\\n 可以输出图像,绘图函数详见Racket的2htdp/image、racket/draw等模块的文档\", \"message_type\": \"group\"}','帮助',1,'2022-07-21 05:14:43',NULL),(769,'2022721131930173','{\"seq\": 19959, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2936960075, \"time\": 1658380770, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"Q群管家\", \"role\": \"admin\", \"level\": 1, \"title\": \"\", \"user_id\": 1841031740, \"nickname\": \"Q群管家\"}, \"source\": {\"seq\": 19958, \"rand\": 1379236945, \"time\": 1658378186, \"message\": \"今天上班写了一上午代码,运行起来一直报错,找不到具体是哪里除了问题,不知道怎么解决,球球大佬帮我看下!报错信息: [图片]\", \"user_id\": 3027117397}, \"message\": [{\"qq\": 3027117397, \"text\": \"@氢氦锂铍硼\", \"type\": \"at\"}, {\"text\": \" 有偿,加我。\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1841031740, \"group_id\": 528166164, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue/vue3\", \"message_id\": \"H3stFG276jwAAE33rw50S2LY4eIB\", \"raw_message\": \"@氢氦锂铍硼 有偿,加我。\", \"message_type\": \"group\"}','有偿',1,'2022-07-21 05:19:30',NULL),(770,'2022721132141166','{\"seq\": 19962, \"atme\": false, \"font\": \"宋体\", \"rand\": 1906004937, \"time\": 1658380901, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"英国\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 260450694, \"nickname\": \"观众\"}, \"message\": [{\"text\": \"还有偿,加他\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 260450694, \"group_id\": 528166164, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue/vue3\", \"message_id\": \"H3stFA+GKYYAAE36cZtTyWLY4mUB\", \"raw_message\": \"还有偿,加他\", \"message_type\": \"group\"}','有偿',1,'2022-07-21 05:21:41',NULL),(771,'2022721132141140','{\"seq\": 19962, \"atme\": false, \"font\": \"宋体\", \"rand\": 1906004937, \"time\": 1658380901, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"英国\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 260450694, \"nickname\": \"观众\"}, \"message\": [{\"text\": \"还有偿,加他\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 260450694, \"group_id\": 528166164, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue/vue3\", \"message_id\": \"H3stFA+GKYYAAE36cZtTyWLY4mUB\", \"raw_message\": \"还有偿,加他\", \"message_type\": \"group\"}','有偿',1,'2022-07-21 05:21:41',NULL),(772,'2022721134642118','{\"seq\": 693993, \"atme\": false, \"font\": \"宋体\", \"rand\": 825561271, \"time\": 1658382402, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"91`怪桑\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 2243348964, \"nickname\": \"🐳\"}, \"message\": [{\"text\": \"有大佬帮忙看看这个异常吗\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2243348964, \"group_id\": 875365038, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React/Uniapp/前端开发\", \"message_id\": \"NC0CroW2yeQACpbpMTUQt2LY6EIB\", \"raw_message\": \"有大佬帮忙看看这个异常吗\", \"message_type\": \"group\"}','帮忙',1,'2022-07-21 05:46:42',NULL),(773,'2022721141547163','{\"seq\": 278120, \"atme\": false, \"font\": \"宋体\", \"rand\": 348246931, \"time\": 1658384147, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"出手域名vue4.com\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 710144136, \"nickname\": \"溴乙烷\"}, \"message\": [{\"text\": \"有需要的老板可以联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 710144136, \"group_id\": 692522608, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端Vue开发程序员贰\", \"message_id\": \"KUcOcCpT8IgABD5oFMHTk2LY7xMB\", \"raw_message\": \"有需要的老板可以联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-21 06:15:47',NULL),(774,'202272114187130','{\"seq\": 653979, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1505485781, \"time\": 1658384287, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2901174640, \"nickname\": \"Eternity\"}, \"message\": [{\"text\": \"我有朋友去Steam上班了,他跟我告诉,其实不用花钱,输入内部的序列号就可以免费用所有正版游戏,现在我把key分享给群里的有缘人:KFC-CRAZY-THURSDAY-VME50\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2901174640, \"group_id\": 931745269, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端(Html,Vue,React)3\", \"message_id\": \"N4lN9azsaXAACfqbWbvj1WLY758B\", \"raw_message\": \"我有朋友去Steam上班了,他跟我告诉,其实不用花钱,输入内部的序列号就可以免费用所有正版游戏,现在我把key分享给群里的有缘人:KFC-CRAZY-THURSDAY-VME50\", \"message_type\": \"group\"}','花钱',1,'2022-07-21 06:18:07',NULL),(775,'2022721142148111','{\"seq\": 746605, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 878084244, \"time\": 1658384508, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"武汉\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1096791882, \"nickname\": \"..\"}, \"message\": [{\"qq\": 2507560118, \"text\": \"@后来-工资2500 坐等被开\", \"type\": \"at\"}, {\"text\": \" 花钱报给我 我帮你\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1096791882, \"group_id\": 718291670, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交\", \"message_id\": \"KtBC1kFft0oAC2RtNFaAlGLY8HwB\", \"raw_message\": \"@后来-工资2500 坐等被开 花钱报给我 我帮你\", \"message_type\": \"group\"}','花钱',1,'2022-07-21 06:21:48',NULL),(776,'202272114220137','{\"seq\": 86501, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2398493490, \"time\": 1658384520, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"male\", \"area\": \"深圳\", \"card\": \"【管理员】已禁言 欧尼酱\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 861420284, \"nickname\": \"初学者\"}, \"message\": [{\"text\": \"有什么需要帮忙的吗?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 861420284, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE 前端划水群\", \"message_id\": \"J/+MYDNYOvwAAVHljvYbMmLY8IgB\", \"raw_message\": \"有什么需要帮忙的吗?\", \"message_type\": \"group\"}','帮忙',1,'2022-07-21 06:22:00',NULL),(777,'2022721143956124','{\"seq\": 694006, \"atme\": false, \"font\": \"宋体\", \"rand\": 1980680698, \"time\": 1658385596, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2901174640, \"nickname\": \"Eternity\"}, \"message\": [{\"text\": \"我有朋友去Steam上班了,他跟我告诉,其实不用花钱,输入内部的序列号就可以免费用所有正版游戏,现在我把key分享给群里的有缘人:KFC-CRAZY-THURSDAY-VME50\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2901174640, \"group_id\": 875365038, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React/Uniapp/前端开发\", \"message_id\": \"NC0CrqzsaXAACpb2dg7J+mLY9LwB\", \"raw_message\": \"我有朋友去Steam上班了,他跟我告诉,其实不用花钱,输入内部的序列号就可以免费用所有正版游戏,现在我把key分享给群里的有缘人:KFC-CRAZY-THURSDAY-VME50\", \"message_type\": \"group\"}','花钱',1,'2022-07-21 06:39:56',NULL),(778,'2022721144131164','{\"seq\": 8190, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 765206597, \"time\": 1658385691, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3481841827, \"nickname\": \"曹\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/3481841827/967252553-2985318612-6FE7971BCB6228740998DA9FBFF3506F/0?term=2\", \"file\": \"6fe7971bcb6228740998da9fbff3506f142560-600-1068.jpg\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r在线接产品拍摄 精修 建模渲染 主图详情页设计 需要的联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3481841827, \"group_id\": 967252553, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"ps,美工,ui,P图\", \"message_id\": \"OacaSc+IsKMAAB/+LZwgRWLY9RsB\", \"raw_message\": \"[图片]\\r在线接产品拍摄 精修 建模渲染 主图详情页设计 需要的联系我\", \"message_type\": \"group\"}','联系我',1,'2022-07-21 06:41:31',NULL),(779,'2022721144419180','{\"seq\": 896849, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3532413886, \"time\": 1658385858, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"\", \"card\": \"广州-00-阿祖\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 893574867, \"nickname\": \"彦祖\"}, \"message\": [{\"text\": \"我有朋友去Jetbrains上班了,他跟我说,其实不用花钱,输入内部的序列号就可以免费用正版Jetbrains全家桶,我把key分享有缘人: KFC-FUCK-CRAZY-THURSDAY-VME50\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 893574867, \"group_id\": 301824988, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Web前端开发Vue程序员壹\", \"message_id\": \"Ef173DVC3tMADa9R0oxbvmLY9cIB\", \"raw_message\": \"我有朋友去Jetbrains上班了,他跟我说,其实不用花钱,输入内部的序列号就可以免费用正版Jetbrains全家桶,我把key分享有缘人: KFC-FUCK-CRAZY-THURSDAY-VME50\", \"message_type\": \"group\"}','花钱',1,'2022-07-21 06:44:19',NULL),(780,'2022721144445109','{\"seq\": 694010, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 2136738953, \"time\": 1658385885, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"灰太狼\", \"role\": \"member\", \"level\": 5, \"title\": \"QQ大王\", \"user_id\": 1013143203, \"nickname\": \"醉酒暴打丈母娘\"}, \"message\": [{\"text\": \"我有朋友去Steam上班了,他跟我告诉,其实不用花钱,输入内部的序列号就可以免费用所有正版游戏,现在我把key分享给群里的有缘人:KFC-CRAZY-THURSDAY-VME50\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1013143203, \"group_id\": 875365038, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React/Uniapp/前端开发\", \"message_id\": \"NC0CrjxjVqMACpb6f1wMiWLY9d0B\", \"raw_message\": \"我有朋友去Steam上班了,他跟我告诉,其实不用花钱,输入内部的序列号就可以免费用所有正版游戏,现在我把key分享给群里的有缘人:KFC-CRAZY-THURSDAY-VME50\", \"message_type\": \"group\"}','花钱',1,'2022-07-21 06:44:45',NULL),(781,'2022721144723118','{\"seq\": 1377652, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1982139367, \"time\": 1658386043, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"male\", \"area\": \"北京\", \"card\": \"SKY[交流]启程\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 811329934, \"nickname\": \"启程²⁰²²\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/811329934/2013934898-3101674602-B983E29D0DE7735456D0FEA7BB66E9CC/0?term=2\", \"file\": \"b983e29d0de7735456d0fea7bb66e9cc35888-489-892.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"可以讲解的,加我,有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 811329934, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcjBb6Y4AFQV0diUL52LY9nsB\", \"raw_message\": \"[图片]可以讲解的,加我,有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-21 06:47:23',NULL),(782,'2022721151057109','{\"seq\": 97951, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3179649769, \"time\": 1658387457, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 2, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2586903766, \"nickname\": \"Give me five~🐬\"}, \"message\": [{\"text\": \"uni中语言切换 tabbar 中的怎么切换的 大佬们求助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2586903766, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp95oxBNYAAX6fvYWa6WLY/AEB\", \"raw_message\": \"uni中语言切换 tabbar 中的怎么切换的 大佬们求助\", \"message_type\": \"group\"}','求助',1,'2022-07-21 07:10:57',NULL),(783,'2022721151128188','{\"seq\": 278312, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1230500527, \"time\": 1658387488, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"出手域名vue4.com\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 710144136, \"nickname\": \"溴乙烷\"}, \"message\": [{\"text\": \"https://gitee.com/constfiv/vue-element-admin-fix-install-problem\\r如果你能动动小手点个小星星帮助我申请加精就更好了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 710144136, \"group_id\": 692522608, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端Vue开发程序员贰\", \"message_id\": \"KUcOcCpT8IgABD8oSVfyr2LY/CAB\", \"raw_message\": \"https://gitee.com/constfiv/vue-element-admin-fix-install-problem\\r如果你能动动小手点个小星星帮助我申请加精就更好了\", \"message_type\": \"group\"}','帮助',1,'2022-07-21 07:11:28',NULL),(784,'2022721151832122','{\"seq\": 1563888, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3481380725, \"time\": 1658387912, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"成人学历提升余老师\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 821209468, \"nickname\": \"成人学历提升余老师\"}, \"message\": [{\"text\": \"联系人(学生公司)12607161 78@qq.com,Android应用工程师(15k-20k)全职 本科3年以上工作经验工作地点:成都 工作要求:1.掌握java基础和Android编程基础2.熟悉kotlin开发,熟悉常见的三方库的使用3.具备独立分析解决问题的能力4.具备相互协助、沟通的能力和团队合作精神邮箱:youqi.wen @arch erm ind.comm或者电联:温又绮15708191245( 不用问余老师,我只是雷锋,请直接联系那个HR或经理,谢谢。 报专升本成人学历,找我就可以了, 学信网可查,谢谢群主和众管理及群友)\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 821209468, \"group_id\": 386092459, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \".NET应用程序框架交流\", \"message_id\": \"FwNNqzDyqXwAF9zwz4GndWLY/cgB\", \"raw_message\": \"联系人(学生公司)12607161 78@qq.com,Android应用工程师(15k-20k)全职 本科3年以上工作经验工作地点:成都 工作要求:1.掌握java基础和Android编程基础2.熟悉kotlin开发,熟悉常见的三方库的使用3.具备独立分析解决问题的能力4.具备相互协助、沟通的能力和团队合作精神邮箱:youqi.wen @arch erm ind.comm或者电联:温又绮15708191245( 不用问余老师,我只是雷锋,请直接联系那个HR或经理,谢谢。 报专升本成人学历,找我就可以了, 学信网可查,谢谢群主和众管理及群友)\", \"message_type\": \"group\"}','解决问题',1,'2022-07-21 07:18:32',NULL),(785,'2022721153621167','{\"seq\": 86676, \"atme\": false, \"font\": \"宋体\", \"rand\": 889180898, \"time\": 1658388981, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"豆子\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2082423304, \"nickname\": \"豆子\"}, \"message\": [{\"text\": \"现在的软件好用的都需要花钱 \", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2082423304, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE 前端划水群\", \"message_id\": \"J/+MYHwfQggAAVKUNP/S4mLZAfUB\", \"raw_message\": \"现在的软件好用的都需要花钱 \", \"message_type\": \"group\"}','花钱',1,'2022-07-21 07:36:21',NULL),(786,'2022721153634161','{\"seq\": 86677, \"atme\": false, \"font\": \"宋体\", \"rand\": 799393909, \"time\": 1658388994, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"豆子\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2082423304, \"nickname\": \"豆子\"}, \"message\": [{\"text\": \"不花钱的我也有但是没啥意思狗看了都摇头\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2082423304, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE 前端划水群\", \"message_id\": \"J/+MYHwfQggAAVKVL6XIdWLZAgIB\", \"raw_message\": \"不花钱的我也有但是没啥意思狗看了都摇头\", \"message_type\": \"group\"}','花钱',1,'2022-07-21 07:36:34',NULL),(787,'202272115389173','{\"seq\": 415502, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4183839698, \"time\": 1658389089, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 403036875, \"nickname\": \"留云借风\"}, \"message\": [{\"text\": \"有偿求助,怎么把贝壳找房的VR放到自己网站上\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 403036875, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6xgF2ssABlcO+WBT0mLZAmEB\", \"raw_message\": \"有偿求助,怎么把贝壳找房的VR放到自己网站上\", \"message_type\": \"group\"}','有偿',1,'2022-07-21 07:38:09',NULL),(788,'2022721153823130','{\"seq\": 86682, \"atme\": false, \"font\": \"宋体\", \"rand\": 110829027, \"time\": 1658389102, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 94, \"sex\": \"male\", \"area\": \"安道尔\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1148951040, \"nickname\": \"莫说那些\"}, \"message\": [{\"text\": \"看片还花钱?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1148951040, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE 前端划水群\", \"message_id\": \"J/+MYER7mgAAAVKaBpsd42LZAm4B\", \"raw_message\": \"看片还花钱?\", \"message_type\": \"group\"}','花钱',1,'2022-07-21 07:38:23',NULL),(789,'2022721154026150','{\"seq\": 86693, \"atme\": false, \"font\": \"宋体\", \"rand\": 1535531595, \"time\": 1658389226, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 94, \"sex\": \"male\", \"area\": \"安道尔\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1148951040, \"nickname\": \"莫说那些\"}, \"message\": [{\"text\": \"看片还花钱?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1148951040, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE 前端划水群\", \"message_id\": \"J/+MYER7mgAAAVKlW4ZaS2LZAuoB\", \"raw_message\": \"看片还花钱?\", \"message_type\": \"group\"}','花钱',1,'2022-07-21 07:40:26',NULL),(790,'2022721154045109','{\"seq\": 86694, \"atme\": false, \"font\": \"宋体\", \"rand\": 465925666, \"time\": 1658389245, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"豆子\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2082423304, \"nickname\": \"豆子\"}, \"source\": {\"seq\": 86693, \"rand\": 1535531595, \"time\": 1658389226, \"message\": \"看片还花钱?\", \"user_id\": 1148951040}, \"message\": [{\"qq\": 1148951040, \"text\": \"@莫说那些\", \"type\": \"at\"}, {\"text\": \" 你吃饭都不花钱的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2082423304, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE 前端划水群\", \"message_id\": \"J/+MYHwfQggAAVKmG8V2ImLZAv0B\", \"raw_message\": \"@莫说那些 你吃饭都不花钱的\", \"message_type\": \"group\"}','花钱',1,'2022-07-21 07:40:45',NULL),(791,'2022721154350115','{\"seq\": 97962, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 586856966, \"time\": 1658389430, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 960303390, \"nickname\": \"向前🇨🇳\"}, \"message\": [{\"text\": \"就他妈写三行 解决问题好几天\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 960303390, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp9zk9ER4AAX6qIvq6BmLZA7YB\", \"raw_message\": \"就他妈写三行 解决问题好几天\", \"message_type\": \"group\"}','解决问题',1,'2022-07-21 07:43:50',NULL),(792,'2022721154542109','{\"seq\": 415558, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 480915864, \"time\": 1658389542, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 403036875, \"nickname\": \"留云借风\"}, \"message\": [{\"text\": \"要么把贝壳VR网页下载下来(但是跨域了),要么iframe引用,再操作里面的网页,但是我不会啊,有大佬会吗?有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 403036875, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6xgF2ssABldGHKoxmGLZBCYB\", \"raw_message\": \"要么把贝壳VR网页下载下来(但是跨域了),要么iframe引用,再操作里面的网页,但是我不会啊,有大佬会吗?有偿\", \"message_type\": \"group\"}','有偿',1,'2022-07-21 07:45:42',NULL),(793,'2022721155129151','{\"seq\": 33666, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1621695913, \"time\": 1658389889, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIOCYKkdqWLZBYEB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠\", \"message_type\": \"group\"}','帮忙',1,'2022-07-21 07:51:29',NULL),(794,'2022721155147152','{\"seq\": 6492, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1157831115, \"time\": 1658389906, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABlcRQMZy2LZBZIB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠\", \"message_type\": \"group\"}','帮忙',1,'2022-07-21 07:51:47',NULL),(795,'202272115526183','{\"seq\": 617289, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3109968581, \"time\": 1658389926, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 29, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 5, \"title\": \"关系户\", \"user_id\": 2993065178, \"nickname\": \"坚持\"}, \"message\": [{\"text\": \"解决问题才是正确的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2993065178, \"group_id\": 583575104, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue.js\", \"message_id\": \"IsimQLJmjNoACWtJuV5axWLZBaYB\", \"raw_message\": \"解决问题才是正确的\", \"message_type\": \"group\"}','解决问题',1,'2022-07-21 07:52:06',NULL),(796,'20227211601182','{\"seq\": 1563906, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1743189948, \"time\": 1658390401, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"[少侠][北京]为一人\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 825675214, \"nickname\": \"男人真难\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/825675214/2651092459-2193370170-A72DBB50A41626AF155478B51BB473E1/0?term=3\", \"file\": \"a72dbb50a41626af155478b51bb473e1189428-1837-922.png\", \"type\": \"image\", \"asface\": false}, {\"qq\": 531487297, \"text\": \"@成都-现在的一片天,是晴朗的一片天\", \"type\": \"at\"}, {\"text\": \" 能帮忙看下这个问题吗\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 825675214, \"group_id\": 386092459, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \".NET应用程序框架交流\", \"message_id\": \"FwNNqzE2zc4AF90CZ+b3vGLZB4EB\", \"raw_message\": \"[图片]@成都-现在的一片天,是晴朗的一片天 能帮忙看下这个问题吗\", \"message_type\": \"group\"}','帮忙',1,'2022-07-21 08:00:01',NULL),(797,'20227211677121','{\"seq\": 1563909, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1506024101, \"time\": 1658390827, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"[少侠][北京]为一人\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 825675214, \"nickname\": \"男人真难\"}, \"message\": [{\"qq\": 663104562, \"text\": \"@北京-简单一个人\", \"type\": \"at\"}, {\"text\": \" 您好,可以帮忙看看要调整哪里吗\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 825675214, \"group_id\": 386092459, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \".NET应用程序框架交流\", \"message_id\": \"FwNNqzE2zc4AF90FWcQapWLZCSsB\", \"raw_message\": \"@北京-简单一个人 您好,可以帮忙看看要调整哪里吗\", \"message_type\": \"group\"}','帮忙',1,'2022-07-21 08:07:07',NULL),(798,'2022721161540146','{\"seq\": 98021, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1631326165, \"time\": 1658391340, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"DCloud_UNI_HT\", \"role\": \"owner\", \"level\": 6, \"title\": \"想好在问\", \"user_id\": 490272692, \"nickname\": \"meHaoTian\"}, \"message\": [{\"text\": \"先把问题搞清楚啊 ,然后才能解决问题啊\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 490272692, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp9x0497QAAX7lYTwP1WLZCywB\", \"raw_message\": \"先把问题搞清楚啊 ,然后才能解决问题啊\", \"message_type\": \"group\"}','解决问题',1,'2022-07-21 08:15:40',NULL),(799,'202272116332106','{\"seq\": 497245, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2186672324, \"time\": 1658392382, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"\", \"card\": \"乡(一年精通 三年熟练 5年入门)\", \"role\": \"member\", \"level\": 5, \"title\": \"\", \"user_id\": 3160410062, \"nickname\": \"乡\"}, \"message\": [{\"text\": \"帮忙解决下冲突\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3160410062, \"group_id\": 387395778, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Element UI Vue 学习交流\", \"message_id\": \"FxcwwrxgB84AB5ZdglX4xGLZDz4B\", \"raw_message\": \"帮忙解决下冲突\", \"message_type\": \"group\"}','帮忙',1,'2022-07-21 08:33:02',NULL),(800,'2022721164821149','{\"seq\": 521185, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1890334984, \"time\": 1658393301, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"male\", \"area\": \"北京\", \"card\": \"\", \"role\": \"admin\", \"level\": 4, \"title\": \"\", \"user_id\": 644775769, \"nickname\": \"码与ta皆失\"}, \"message\": [{\"text\": \"果然 有家室的人花钱都很省\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 644775769, \"group_id\": 538246944, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JS、Vue、Element-UI技术栈\", \"message_id\": \"IBT/ICZuf1kAB/PhcKw5CGLZEtUB\", \"raw_message\": \"果然 有家室的人花钱都很省\", \"message_type\": \"group\"}','花钱',1,'2022-07-21 08:48:21',NULL),(801,'2022721164821116','{\"seq\": 521185, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1890334984, \"time\": 1658393301, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"male\", \"area\": \"北京\", \"card\": \"\", \"role\": \"admin\", \"level\": 4, \"title\": \"\", \"user_id\": 644775769, \"nickname\": \"码与ta皆失\"}, \"message\": [{\"text\": \"果然 有家室的人花钱都很省\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 644775769, \"group_id\": 538246944, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JS、Vue、Element-UI技术栈\", \"message_id\": \"IBT/ICZuf1kAB/PhcKw5CGLZEtUB\", \"raw_message\": \"果然 有家室的人花钱都很省\", \"message_type\": \"group\"}','花钱',1,'2022-07-21 08:48:21',NULL),(802,'202272117118154','{\"seq\": 60762, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1644943849, \"time\": 1658394668, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 2, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 965604716, \"nickname\": \"寻寻电音\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/965604716/955416469-2942758471-5549F523314F622C7F4AC1C4A03B4A2E/0?term=2\", \"file\": \"5549f523314f622c7f4ac1c4a03b4a2e100568-980-2124.jpg\", \"type\": \"image\", \"asface\": false}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/965604716/955416469-2194293330-5B609E75C5CA893806C80F2D7818E024/0?term=2\", \"file\": \"5b609e75c5ca893806c80f2d7818e024170629-1080-2340.jpg\", \"type\": \"image\", \"asface\": false}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/965604716/955416469-2247471886-C99CB55F0A9B7F00D16956B7C4472B1C/0?term=2\", \"file\": \"c99cb55f0a9b7f00d16956b7c4472b1c124669-1080-2340.jpg\", \"type\": \"image\", \"asface\": false}, {\"text\": \" \\r谁有类似这种平台的成品吗?有的联系我,非诚勿扰\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 965604716, \"group_id\": 955416469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小程序app开发接单群\", \"message_id\": \"OPJ/lTmN9WwAAO1aYgvZ6WLZGCwB\", \"raw_message\": \"[图片][图片][图片] \\r谁有类似这种平台的成品吗?有的联系我,非诚勿扰\", \"message_type\": \"group\"}','联系我',1,'2022-07-21 09:11:08',NULL),(803,'202272117424109','{\"seq\": 438904, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4172148179, \"time\": 1658396524, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"male\", \"area\": \"福州\", \"card\": \"砕月\", \"role\": \"admin\", \"level\": 1, \"title\": \"\", \"user_id\": 732832199, \"nickname\": \"砕けた月\"}, \"message\": [{\"text\": \"浪哥屏蔽是因为帮忙解决还被人说态度不好\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 732832199, \"group_id\": 232041042, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uView UI 官方10群\", \"message_id\": \"DdSqUiuuIccABrJ4+K3t02LZH2wB\", \"raw_message\": \"浪哥屏蔽是因为帮忙解决还被人说态度不好\", \"message_type\": \"group\"}','帮忙',1,'2022-07-21 09:42:04',NULL),(804,'2022721181726138','{\"seq\": 1055772, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2766929480, \"time\": 1658398646, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 120, \"sex\": \"male\", \"area\": \"澳门\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1026444240, \"nickname\": \"酱油哥-幻影联动\"}, \"message\": [{\"text\": \"有知道的付费\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1026444240, \"group_id\": 305572224, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/vue/react/angular/no\", \"message_id\": \"EjapgD0uS9AAEBwcpOv+SGLZJ7YB\", \"raw_message\": \"有知道的付费\", \"message_type\": \"group\"}','付费',1,'2022-07-21 10:17:26',NULL),(805,'2022721183515142','{\"seq\": 16215, \"atme\": false, \"font\": \"黑体\", \"rand\": 3143950368, \"time\": 1658399715, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1725291847, \"nickname\": \"大雨滂沱\"}, \"message\": [{\"text\": \"重点学什么知识,对以后实际工作比较有帮助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1725291847, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVgmbV3UcAAD9Xu2TgIGLZK+MB\", \"raw_message\": \"重点学什么知识,对以后实际工作比较有帮助\", \"message_type\": \"group\"}','帮助',1,'2022-07-21 10:35:15',NULL),(806,'2022721183717123','{\"seq\": 1378345, \"atme\": false, \"font\": \"黑体\", \"rand\": 880258962, \"time\": 1658399837, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"\", \"card\": \"SKY[大雨]滂沱\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1725291847, \"nickname\": \"大雨滂沱\"}, \"message\": [{\"text\": \"除了JS CSS HTML VUE 还要重点学些啥对实际工作比较有帮助啊?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1725291847, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcmbV3UcAFQgpNHevkmLZLF0B\", \"raw_message\": \"除了JS CSS HTML VUE 还要重点学些啥对实际工作比较有帮助啊?\", \"message_type\": \"group\"}','帮助',1,'2022-07-21 10:37:17',NULL),(807,'2022721184250149','{\"seq\": 16236, \"atme\": false, \"font\": \"宋体\", \"rand\": 128128372, \"time\": 1658400170, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 1, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2090405485, \"nickname\": \"K\"}, \"message\": [{\"text\": \"技术能力强的大佬加我一下好友,最近准备上班(新手),可能会遇到一些问题不懂解决,有偿。\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2090405485, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVgnyZDm0AAD9sB6MVdGLZLaoB\", \"raw_message\": \"技术能力强的大佬加我一下好友,最近准备上班(新手),可能会遇到一些问题不懂解决,有偿。\", \"message_type\": \"group\"}','有偿',1,'2022-07-21 10:42:50',NULL),(808,'202272118441131','{\"seq\": 416723, \"atme\": false, \"font\": \"宋体\", \"rand\": 666656406, \"time\": 1658400241, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 1, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2090405485, \"nickname\": \"K\"}, \"message\": [{\"text\": \"前端技术能力强的大佬加我一下好友,最近准备上班(新手),可能会遇到一些问题不懂解决,有偿。\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2090405485, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h63yZDm0ABlvTJ7xelmLZLfEB\", \"raw_message\": \"前端技术能力强的大佬加我一下好友,最近准备上班(新手),可能会遇到一些问题不懂解决,有偿。\", \"message_type\": \"group\"}','有偿',1,'2022-07-21 10:44:01',NULL),(809,'2022721185858162','{\"seq\": 3703, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2535032611, \"time\": 1658401138, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2149095612, \"nickname\": \"letsbehappy\"}, \"message\": [{\"text\": \"来个靠谱点的,帮忙做uniapp 和aj项目对接 ,价格从优~!\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2149095612, \"group_id\": 820320773, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE-JS-手机控制\", \"message_id\": \"MOUaBYAYmLwAAA53lxmHI2LZMXIB\", \"raw_message\": \"来个靠谱点的,帮忙做uniapp 和aj项目对接 ,价格从优~!\", \"message_type\": \"group\"}','帮忙',1,'2022-07-21 10:58:58',NULL),(810,'202272119615148','{\"seq\": 439032, \"atme\": false, \"font\": \"黑体\", \"rand\": 1397410523, \"time\": 1658401575, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 664199056, \"nickname\": \"无止境-金助手\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/664199056/4122041042-2964462711-19B75E0EF401D0C4747E6102641C363E/0?term=2\", \"file\": \"19b75e0ef401d0c4747e6102641c363e25204-518-1037.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"求助:这种布局uniapp中h5 怎么计算u-list的高度啊\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 664199056, \"group_id\": 232041042, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uView UI 官方10群\", \"message_id\": \"DdSqUieW35AABrL4U0rK22LZMycB\", \"raw_message\": \"[图片]求助:这种布局uniapp中h5 怎么计算u-list的高度啊\", \"message_type\": \"group\"}','求助',1,'2022-07-21 11:06:15',NULL),(811,'2022721193357123','{\"seq\": 439048, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3408903018, \"time\": 1658403237, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"阿根廷\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3633652729, \"nickname\": \"秘密\"}, \"message\": [{\"text\": \"/斜眼笑技术跨不过的他们花钱外包给我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3633652729, \"group_id\": 232041042, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uView UI 官方10群\", \"message_id\": \"DdSqUtiVI/kABrMIyy+7amLZOaUB\", \"raw_message\": \"/斜眼笑技术跨不过的他们花钱外包给我\", \"message_type\": \"group\"}','花钱',1,'2022-07-21 11:33:57',NULL),(812,'2022721201814135','{\"seq\": 417262, \"atme\": false, \"font\": \"宋体\", \"rand\": 951276375, \"time\": 1658405894, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"\", \"card\": \"憨憨可达鸭(react)\", \"role\": \"member\", \"level\": 1, \"title\": \"金鸭子\", \"user_id\": 1443844172, \"nickname\": \"憨憨可达鸭\"}, \"message\": [{\"text\": \"没面试,帮群友解决问题顺便复习巩固知识\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1443844172, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h61YPUEwABl3uOLNTV2LZRAYB\", \"raw_message\": \"没面试,帮群友解决问题顺便复习巩固知识\", \"message_type\": \"group\"}','解决问题',1,'2022-07-21 12:18:14',NULL),(813,'2022721211152176','{\"seq\": 957423, \"atme\": false, \"font\": \"宋体\", \"rand\": 1614934953, \"time\": 1658409112, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2110824941, \"nickname\": \"管管\"}, \"message\": [{\"text\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2110824941, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB33Qoe0ADpvvYEHzqWLZUJgB\", \"raw_message\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"message_type\": \"group\"}','帮助',1,'2022-07-21 13:11:52',NULL),(814,'2022721211152180','{\"seq\": 957423, \"atme\": false, \"font\": \"宋体\", \"rand\": 1614934953, \"time\": 1658409112, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2110824941, \"nickname\": \"管管\"}, \"message\": [{\"text\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2110824941, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB33Qoe0ADpvvYEHzqWLZUJgB\", \"raw_message\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"message_type\": \"group\"}','帮助',1,'2022-07-21 13:11:52',NULL),(815,'2022721212558128','{\"seq\": 59549, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1547366716, \"time\": 1658409958, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"毛里求斯\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 583710676, \"nickname\": \"夏目丶\"}, \"message\": [{\"text\": \"这个是付费的吧\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 583710676, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBSLKt9QAAOidXDrxPGLZU+YB\", \"raw_message\": \"这个是付费的吧\", \"message_type\": \"group\"}','付费',1,'2022-07-21 13:25:58',NULL),(816,'202272121264183','{\"seq\": 59551, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 2094245663, \"time\": 1658409964, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"毛里求斯\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 583710676, \"nickname\": \"夏目丶\"}, \"message\": [{\"text\": \"他有块组件是付费的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 583710676, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBSLKt9QAAOiffNOnH2LZU+wB\", \"raw_message\": \"他有块组件是付费的\", \"message_type\": \"group\"}','付费',1,'2022-07-21 13:26:04',NULL),(817,'2022721215436111','{\"seq\": 162747, \"atme\": false, \"font\": \"宋体\", \"rand\": 116185996, \"time\": 1658411676, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2514026269, \"nickname\": \"在下美女\"}, \"message\": [{\"text\": \"有美团能抢票的吗 有偿 \", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2514026269, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O45XY/x0AAnu7BuzbjGLZWpwB\", \"raw_message\": \"有美团能抢票的吗 有偿 \", \"message_type\": \"group\"}','有偿',1,'2022-07-21 13:54:36',NULL),(818,'2022721215440140','{\"seq\": 162748, \"atme\": false, \"font\": \"宋体\", \"rand\": 2062331654, \"time\": 1658411680, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"female\", \"area\": \"南充\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2514026269, \"nickname\": \"在下美女\"}, \"message\": [{\"text\": \"有美团能抢票的吗 有偿 \", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2514026269, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O45XY/x0AAnu8euyvBmLZWqAB\", \"raw_message\": \"有美团能抢票的吗 有偿 \", \"message_type\": \"group\"}','有偿',1,'2022-07-21 13:54:40',NULL),(819,'2022721215441180','{\"seq\": 162749, \"atme\": false, \"font\": \"宋体\", \"rand\": 1998565260, \"time\": 1658411681, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"female\", \"area\": \"南充\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2514026269, \"nickname\": \"在下美女\"}, \"message\": [{\"text\": \"有美团能抢票的吗 有偿 \", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2514026269, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O45XY/x0AAnu9dx+vjGLZWqEB\", \"raw_message\": \"有美团能抢票的吗 有偿 \", \"message_type\": \"group\"}','有偿',1,'2022-07-21 13:54:41',NULL),(820,'202272122153168','{\"seq\": 1378683, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1621457118, \"time\": 1658412903, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"三亚\", \"card\": \"SKY[交流]Joey\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3184206849, \"nickname\": \"Joey\"}, \"message\": [{\"text\": \"大佬们帮忙看一下为啥失去焦点不保存呢?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3184206849, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcr3LJAEAFQl7YKV43mLZX2cB\", \"raw_message\": \"大佬们帮忙看一下为啥失去焦点不保存呢?\", \"message_type\": \"group\"}','帮忙',1,'2022-07-21 14:15:03',NULL),(821,'2022721231549157','{\"seq\": 5794, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3229138699, \"time\": 1658416549, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 32, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2628851836, \"nickname\": \"飞翔\"}, \"message\": [{\"text\": \"有一个灰色app的后台,需要做,有意向的个人PHP开发联系我,\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2628851836, \"group_id\": 831071233, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"开发\", \"message_id\": \"MYkkAZyxGHwAABaiwHi/C2LZbaUB\", \"raw_message\": \"有一个灰色app的后台,需要做,有意向的个人PHP开发联系我,\", \"message_type\": \"group\"}','联系我',1,'2022-07-21 15:15:49',NULL),(822,'2022721235245129','{\"seq\": 6500, \"atme\": false, \"font\": \"宋体\", \"rand\": 1288324046, \"time\": 1658418765, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABlkTMpDzmLZdk0B\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-21 15:52:45',NULL),(823,'2022721235326125','{\"seq\": 33678, \"atme\": false, \"font\": \"宋体\", \"rand\": 36105810, \"time\": 1658418806, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIOOAibuUmLZdnYB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',1,'2022-07-21 15:53:26',NULL),(824,'2022721235757116','{\"seq\": 14857, \"atme\": false, \"font\": \"宋体\", \"rand\": 2098419095, \"time\": 1658419077, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 634129568, \"nickname\": \"kalluwa\"}, \"message\": [{\"text\": \"uniapp萌新求助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 634129568, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaCXMDKAAADoJfRNVl2LZd4UB\", \"raw_message\": \"uniapp萌新求助\", \"message_type\": \"group\"}','求助',1,'2022-07-21 15:57:57',NULL),(825,'2022721235921176','{\"seq\": 14858, \"atme\": false, \"font\": \"宋体\", \"rand\": 201113952, \"time\": 1658419161, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"文莱\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 907749605, \"nickname\": \"有辛\"}, \"message\": [{\"text\": \"有偿找个朋友在我的h5内做一个实时音频的一个前端UI。开发:uniapp\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 907749605, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaDYbKOUAADoKC/zBYGLZd9kB\", \"raw_message\": \"有偿找个朋友在我的h5内做一个实时音频的一个前端UI。开发:uniapp\", \"message_type\": \"group\"}','有偿',1,'2022-07-21 15:59:21',NULL),(826,'2022721235921118','{\"seq\": 14858, \"atme\": false, \"font\": \"宋体\", \"rand\": 201113952, \"time\": 1658419161, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"文莱\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 907749605, \"nickname\": \"有辛\"}, \"message\": [{\"text\": \"有偿找个朋友在我的h5内做一个实时音频的一个前端UI。开发:uniapp\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 907749605, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaDYbKOUAADoKC/zBYGLZd9kB\", \"raw_message\": \"有偿找个朋友在我的h5内做一个实时音频的一个前端UI。开发:uniapp\", \"message_type\": \"group\"}','有偿',1,'2022-07-21 15:59:21',NULL),(827,'20227220328132','{\"seq\": 18335, \"atme\": false, \"font\": \"宋体\", \"rand\": 1039486274, \"time\": 1658421128, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 120, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1040930918, \"nickname\": \"A网站模板®仿站💯\"}, \"message\": [{\"text\": \"个人接单:各行各业网站模板 建站一条龙 快速仿站 靠谱 长期合作\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1040930918, \"group_id\": 582670878, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"DEDE网站建设,织梦仿站\", \"message_id\": \"IrraHj4LWGYAAEefPfVNQmLZf4gB\", \"raw_message\": \"个人接单:各行各业网站模板 建站一条龙 快速仿站 靠谱 长期合作\", \"message_type\": \"group\"}','人接单',1,'2022-07-21 16:32:08',NULL),(828,'202272211442123','{\"seq\": 75868, \"atme\": false, \"font\": \"宋体\", \"rand\": 113750673, \"time\": 1658423682, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 474688581, \"nickname\": \"记得\"}, \"message\": [{\"text\": \"防一页面,有人接单没\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 474688581, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdRxLLEUAAShcBseykWLZiYIB\", \"raw_message\": \"防一页面,有人接单没\", \"message_type\": \"group\"}','人接单',1,'2022-07-21 17:14:42',NULL),(829,'202272211442106','{\"seq\": 75868, \"atme\": false, \"font\": \"宋体\", \"rand\": 113750673, \"time\": 1658423682, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 474688581, \"nickname\": \"记得\"}, \"message\": [{\"text\": \"防一页面,有人接单没\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 474688581, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdRxLLEUAAShcBseykWLZiYIB\", \"raw_message\": \"防一页面,有人接单没\", \"message_type\": \"group\"}','人接单',1,'2022-07-21 17:14:42',NULL),(830,'20227225466167','{\"seq\": 87196, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2812751246, \"time\": 1658439965, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3450261842, \"nickname\": \"默笙\"}, \"message\": [{\"text\": \"哪位大哥能帮忙看看 为啥报错\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/3450261842/671059040-2460990364-223D78869838937C25AE2AE6EA42B878/0?term=2\", \"file\": \"223d78869838937c25ae2ae6ea42b8785667-466-51.png\", \"type\": \"image\", \"asface\": false}], \"self_id\": 1841031740, \"user_id\": 3450261842, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE 前端划水群\", \"message_id\": \"J/+MYM2m0VIAAVScp6ctjmLZyR0B\", \"raw_message\": \"哪位大哥能帮忙看看 为啥报错[图片]\", \"message_type\": \"group\"}','帮忙',0,'2022-07-21 21:46:06',NULL),(831,'202272254746158','{\"seq\": 16669, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 187777296, \"time\": 1658440066, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3450261842, \"nickname\": \"默笙\"}, \"message\": [{\"text\": \"哪位大哥能帮忙看看 为啥报错\\r\", \"type\": \"text\"}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/3450261842/881235330-2943262057-223D78869838937C25AE2AE6EA42B878/0?term=2\", \"file\": \"223d78869838937c25ae2ae6ea42b8785667-466-51.png\", \"type\": \"image\", \"asface\": false}], \"self_id\": 1841031740, \"user_id\": 3450261842, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVgs2m0VIAAEEdCzFBEGLZyYIB\", \"raw_message\": \"哪位大哥能帮忙看看 为啥报错\\r[图片]\", \"message_type\": \"group\"}','帮忙',0,'2022-07-21 21:47:46',NULL),(832,'202272263431165','{\"seq\": 16675, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 735793955, \"time\": 1658442871, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"佛山\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1500813520, \"nickname\": \"明明是老大\"}, \"message\": [{\"text\": \"尝试是不用花钱的\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1500813520, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVgll0mNAAAEEjK9tTI2LZ1HcB\", \"raw_message\": \"尝试是不用花钱的\", \"message_type\": \"group\"}','花钱',0,'2022-07-21 22:34:31',NULL),(833,'202272291843153','{\"seq\": 162789, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3172567535, \"time\": 1658452723, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1577350959, \"nickname\": \"风霜何故\"}, \"message\": [{\"text\": \"全国首家APP免费开发,技术风投,战略合作。\\r行业内独角兽打造\\r帮助中小型企业互联网转型!\\r专业做软件开发\\r知识付费APP\\r教育平台APP\\r同城服务APP\\r社交直播APP\\r家政APP\\r悬赏任务发布APP\\r多用户商城APP\\r全行业APP平台定制开发\\r华为云信息安全服务\\r仿爱聊交友APP开发\\r三方支付接口\\r爱搭支付对接\\r微信:YIZHIAINI-ZSJ\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1577350959, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O414Edy8AAnvlvRmJ72LZ+vMB\", \"raw_message\": \"全国首家APP免费开发,技术风投,战略合作。\\r行业内独角兽打造\\r帮助中小型企业互联网转型!\\r专业做软件开发\\r知识付费APP\\r教育平台APP\\r同城服务APP\\r社交直播APP\\r家政APP\\r悬赏任务发布APP\\r多用户商城APP\\r全行业APP平台定制开发\\r华为云信息安全服务\\r仿爱聊交友APP开发\\r三方支付接口\\r爱搭支付对接\\r微信:YIZHIAINI-ZSJ\", \"message_type\": \"group\"}','付费',0,'2022-07-22 01:18:43',NULL),(834,'202272292231175','{\"seq\": 1379100, \"atme\": false, \"font\": \"宋体\", \"rand\": 1410669416, \"time\": 1658452951, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"黄冈\", \"card\": \"SKY[且听]晚风吟\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3190845834, \"nickname\": \"*且听晚风吟*~\"}, \"message\": [{\"text\": \"团队项目最忌讳分工不明确,你说来问问工艺逻辑还行,让帮忙写直接滚蛋\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3190845834, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcr4wcYoAFQscVBUbaGLZ+9cB\", \"raw_message\": \"团队项目最忌讳分工不明确,你说来问问工艺逻辑还行,让帮忙写直接滚蛋\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 01:22:31',NULL),(835,'202272294920135','{\"seq\": 161965, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1787776282, \"time\": 1658454560, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"上海-前端\", \"role\": \"admin\", \"level\": 5, \"title\": \"\", \"user_id\": 1399221059, \"nickname\": \"最长情的告白\"}, \"message\": [{\"text\": \"我觉得加条新规,萌新问问题或者帮你解决问题,情况可以的话可以在群里发几毛到一块不等的红包\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1399221059, \"group_id\": 640229084, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JavaScript/nodejs/vue/react前\", \"message_id\": \"Jike3FNma0MAAnitao9NGmLaAiAB\", \"raw_message\": \"我觉得加条新规,萌新问问题或者帮你解决问题,情况可以的话可以在群里发几毛到一块不等的红包\", \"message_type\": \"group\"}','解决问题',0,'2022-07-22 01:49:20',NULL),(836,'202272210126115','{\"seq\": 655209, \"atme\": false, \"font\": \"宋体\", \"rand\": 656762510, \"time\": 1658455286, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 28, \"sex\": \"male\", \"area\": \"张家口\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3050034075, \"nickname\": \"不7榴莲\"}, \"message\": [{\"text\": \"需要冰墩墩钥匙扣的联系我\", \"type\": \"text\"}, {\"id\": 76, \"text\": \"赞\", \"type\": \"face\"}], \"self_id\": 1758193468, \"user_id\": 3050034075, \"group_id\": 931745269, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端(Html,Vue,React)3\", \"message_id\": \"N4lN9bXL05sACf9pJyVmjmLaBPYB\", \"raw_message\": \"需要冰墩墩钥匙扣的联系我[赞]\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 02:01:26',NULL),(837,'202272210240153','{\"seq\": 1379303, \"atme\": false, \"font\": \"宋体\", \"rand\": 595481579, \"time\": 1658455360, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"female\", \"area\": \"\", \"card\": \"SKY[交流]地球\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1326984615, \"nickname\": \"地球only 玩家007\"}, \"message\": [{\"text\": \"自学会增长解决问题的能力\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1326984615, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphck8YLacAFQvnI35T62LaBUAB\", \"raw_message\": \"自学会增长解决问题的能力\", \"message_type\": \"group\"}','解决问题',0,'2022-07-22 02:02:40',NULL),(838,'202272210314131','{\"seq\": 1379315, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 2100604967, \"time\": 1658455394, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[無限]進步\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1695415918, \"nickname\": \"無限進步\"}, \"message\": [{\"text\": \"自学能自己解决问题,会促进思考\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1695415918, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcmUN/m4AFQvzfTSwJ2LaBWIB\", \"raw_message\": \"自学能自己解决问题,会促进思考\", \"message_type\": \"group\"}','解决问题',0,'2022-07-22 02:03:14',NULL),(839,'20227221054128','{\"seq\": 1379341, \"atme\": false, \"font\": \"宋体\", \"rand\": 304322726, \"time\": 1658455503, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[雪藏]人生\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 310800410, \"nickname\": \"雪藏人生\"}, \"message\": [{\"qq\": 1326984615, \"text\": \"@SKY[交流]地球\", \"type\": \"at\"}, {\"text\": \" 最重要的是在项目上面打磨,多自己解决问题,寻求解题思路,养成习惯就能独立解决问题,形成一套自己特有的工作方式,独当一面\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 310800410, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphchKGcBoAFQwNEiOYpmLaBc8B\", \"raw_message\": \"@SKY[交流]地球 最重要的是在项目上面打磨,多自己解决问题,寻求解题思路,养成习惯就能独立解决问题,形成一套自己特有的工作方式,独当一面\", \"message_type\": \"group\"}','解决问题',0,'2022-07-22 02:05:04',NULL),(840,'2022722101121182','{\"seq\": 342248, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 942168729, \"time\": 1658455881, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 29, \"sex\": \"male\", \"area\": \"\", \"card\": \"重庆-前端-木子李\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 903226828, \"nickname\": \"‘无名贤者’\"}, \"message\": [{\"text\": \"求助,老哥\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 903226828, \"group_id\": 480305320, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue,react,Angular成都\", \"message_id\": \"HKDgqDXWJcwABTjoOChamWLaB0kB\", \"raw_message\": \"求助,老哥\", \"message_type\": \"group\"}','求助',0,'2022-07-22 02:11:21',NULL),(841,'2022722103653136','{\"seq\": 1564006, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1539087699, \"time\": 1658457413, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"北京\", \"card\": \"北京-简单一个人\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 663104562, \"nickname\": \"继续向前走\"}, \"message\": [{\"text\": \"有命挣钱没命花钱\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 663104562, \"group_id\": 386092459, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \".NET应用程序框架交流\", \"message_id\": \"FwNNqyeGLDIAF91mW7ydU2LaDUUB\", \"raw_message\": \"有命挣钱没命花钱\", \"message_type\": \"group\"}','花钱',0,'2022-07-22 02:36:53',NULL),(842,'2022722104014116','{\"seq\": 694311, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1958770201, \"time\": 1658457614, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"福建\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1471494764, \"nickname\": \"我不李姐\"}, \"message\": [{\"text\": \"说是公司掏钱去市二医院在瞅瞅\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1471494764, \"group_id\": 875365038, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React/Uniapp/前端开发\", \"message_id\": \"NC0Crle1OmwACpgndMB2GWLaDg4B\", \"raw_message\": \"说是公司掏钱去市二医院在瞅瞅\", \"message_type\": \"group\"}','掏钱',0,'2022-07-22 02:40:14',NULL),(843,'2022722104129117','{\"seq\": 162002, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3759119412, \"time\": 1658457688, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"湖北\", \"card\": \"山东菏泽曹县 菜牛\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1530826227, \"nickname\": \"可乐拉环.\"}, \"message\": [{\"text\": \"摸鱼摸得好无聊 来个人让我远程帮忙写下代码吧\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1530826227, \"group_id\": 1160215841, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue element有问必答群\", \"message_id\": \"RSd9IVs+jfMAAnjS4A+cNGLaDlgB\", \"raw_message\": \"摸鱼摸得好无聊 来个人让我远程帮忙写下代码吧\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 02:41:29',NULL),(844,'202272211416140','{\"seq\": 5375, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4090760378, \"time\": 1658459056, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 33, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 811948956, \"nickname\": \"网站APP定制开发\"}, \"message\": [{\"text\": \"网站搭建,单页开发,仿站,网页封装APP/EXE,火车头采集,出租蜘蛛池,需要联系我\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 811948956, \"group_id\": 581532578, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/小程序外包交流\", \"message_id\": \"Iql7ojBlW5wAABT/89QMumLaE7AB\", \"raw_message\": \"网站搭建,单页开发,仿站,网页封装APP/EXE,火车头采集,出租蜘蛛池,需要联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 03:04:16',NULL),(845,'202272211416160','{\"seq\": 5375, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4090760378, \"time\": 1658459056, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 33, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 811948956, \"nickname\": \"网站APP定制开发\"}, \"message\": [{\"text\": \"网站搭建,单页开发,仿站,网页封装APP/EXE,火车头采集,出租蜘蛛池,需要联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 811948956, \"group_id\": 581532578, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/小程序外包交流\", \"message_id\": \"Iql7ojBlW5wAABT/89QMumLaE7AB\", \"raw_message\": \"网站搭建,单页开发,仿站,网页封装APP/EXE,火车头采集,出租蜘蛛池,需要联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 03:04:16',NULL),(846,'2022722111854132','{\"seq\": 748617, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3049453773, \"time\": 1658459934, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 1, \"sex\": \"male\", \"area\": \"爱尔兰\", \"card\": \"后来-工资2500 坐等被开\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2507560118, \"nickname\": \"后来\"}, \"message\": [{\"text\": \"我可能需要一点帮助\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2507560118, \"group_id\": 718291670, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交\", \"message_id\": \"KtBC1pV2VLYAC2xJtcL4zWLaFx4B\", \"raw_message\": \"我可能需要一点帮助\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 03:18:54',NULL),(847,'2022722115234125','{\"seq\": 162059, \"atme\": false, \"font\": \"宋体\", \"rand\": 1503536347, \"time\": 1658461954, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 39, \"sex\": \"male\", \"area\": \"昆明\", \"card\": \"JavaScript小白\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 121164495, \"nickname\": \" 无限的未知\"}, \"message\": [{\"text\": \"咨询一些百度不到的问题付费\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 121164495, \"group_id\": 640229084, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JavaScript/nodejs/vue/react前\", \"message_id\": \"Jike3Ac40s8AAnkLWZ4k22LaHwIB\", \"raw_message\": \"咨询一些百度不到的问题付费\", \"message_type\": \"group\"}','付费',0,'2022-07-22 03:52:34',NULL),(848,'2022722115247109','{\"seq\": 162060, \"atme\": false, \"font\": \"宋体\", \"rand\": 1905690502, \"time\": 1658461967, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 39, \"sex\": \"male\", \"area\": \"昆明\", \"card\": \"JavaScript小白\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 121164495, \"nickname\": \" 无限的未知\"}, \"message\": [{\"text\": \"或者一些个性化需求付费\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 121164495, \"group_id\": 640229084, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JavaScript/nodejs/vue/react前\", \"message_id\": \"Jike3Ac40s8AAnkMcZaHhmLaHw8B\", \"raw_message\": \"或者一些个性化需求付费\", \"message_type\": \"group\"}','付费',0,'2022-07-22 03:52:47',NULL),(849,'202272211589137','{\"seq\": 958089, \"atme\": false, \"font\": \"宋体\", \"rand\": 429711801, \"time\": 1658462289, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3381775672, \"nickname\": \"喵喵\"}, \"message\": [{\"text\": \"可以跟我说(要叫我或者at我,我才知道哦):\\r\\n提醒帮助\\r\\n上海天气 上海明天天气\\r\\n笑话\\r\\n摸鱼 摸鱼帮助 节假日\\r\\n图 风景图 动漫图 美女图 妹子图\\r\\n随机点数\\r\\n美音hello 英音hello\\r\\n\\r\\n另外,我可以执行Racket代码哦\\r\\n 有以下几种发送给我的方式:\\r\\n a. 如果代码是以一个完整的表达式(如(+ 1 2))开始,可以直接发送。\\r\\n b. at我,然后跟着代码。\\r\\n c. 直接发送 #rkt <代码> 这个输出会带源代码的消息的回复\\r\\n d. 直接发送 !rkt <代码> 这个输出不带源代码的消息的回复\\r\\n 可以输出图像,绘图函数详见Racket的2htdp/image、racket/draw等模块的文档\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3381775672, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB8mRzTgADp6JGZzhuWLaIFEB\", \"raw_message\": \"可以跟我说(要叫我或者at我,我才知道哦):\\r\\n提醒帮助\\r\\n上海天气 上海明天天气\\r\\n笑话\\r\\n摸鱼 摸鱼帮助 节假日\\r\\n图 风景图 动漫图 美女图 妹子图\\r\\n随机点数\\r\\n美音hello 英音hello\\r\\n\\r\\n另外,我可以执行Racket代码哦\\r\\n 有以下几种发送给我的方式:\\r\\n a. 如果代码是以一个完整的表达式(如(+ 1 2))开始,可以直接发送。\\r\\n b. at我,然后跟着代码。\\r\\n c. 直接发送 #rkt <代码> 这个输出会带源代码的消息的回复\\r\\n d. 直接发送 !rkt <代码> 这个输出不带源代码的消息的回复\\r\\n 可以输出图像,绘图函数详见Racket的2htdp/image、racket/draw等模块的文档\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 03:58:09',NULL),(850,'202272211589136','{\"seq\": 958089, \"atme\": false, \"font\": \"宋体\", \"rand\": 429711801, \"time\": 1658462289, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3381775672, \"nickname\": \"喵喵\"}, \"message\": [{\"text\": \"可以跟我说(要叫我或者at我,我才知道哦):\\r\\n提醒帮助\\r\\n上海天气 上海明天天气\\r\\n笑话\\r\\n摸鱼 摸鱼帮助 节假日\\r\\n图 风景图 动漫图 美女图 妹子图\\r\\n随机点数\\r\\n美音hello 英音hello\\r\\n\\r\\n另外,我可以执行Racket代码哦\\r\\n 有以下几种发送给我的方式:\\r\\n a. 如果代码是以一个完整的表达式(如(+ 1 2))开始,可以直接发送。\\r\\n b. at我,然后跟着代码。\\r\\n c. 直接发送 #rkt <代码> 这个输出会带源代码的消息的回复\\r\\n d. 直接发送 !rkt <代码> 这个输出不带源代码的消息的回复\\r\\n 可以输出图像,绘图函数详见Racket的2htdp/image、racket/draw等模块的文档\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 3381775672, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB8mRzTgADp6JGZzhuWLaIFEB\", \"raw_message\": \"可以跟我说(要叫我或者at我,我才知道哦):\\r\\n提醒帮助\\r\\n上海天气 上海明天天气\\r\\n笑话\\r\\n摸鱼 摸鱼帮助 节假日\\r\\n图 风景图 动漫图 美女图 妹子图\\r\\n随机点数\\r\\n美音hello 英音hello\\r\\n\\r\\n另外,我可以执行Racket代码哦\\r\\n 有以下几种发送给我的方式:\\r\\n a. 如果代码是以一个完整的表达式(如(+ 1 2))开始,可以直接发送。\\r\\n b. at我,然后跟着代码。\\r\\n c. 直接发送 #rkt <代码> 这个输出会带源代码的消息的回复\\r\\n d. 直接发送 !rkt <代码> 这个输出不带源代码的消息的回复\\r\\n 可以输出图像,绘图函数详见Racket的2htdp/image、racket/draw等模块的文档\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 03:58:09',NULL),(851,'2022722115855171','{\"seq\": 162064, \"atme\": false, \"font\": \"宋体\", \"rand\": 1247266991, \"time\": 1658462334, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 39, \"sex\": \"male\", \"area\": \"昆明\", \"card\": \"JavaScript小白\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 121164495, \"nickname\": \" 无限的未知\"}, \"message\": [{\"text\": \"比如,我就有一些可以付费的需求,例如,某个功能的应用场景,像这些需求是需要有开发经验的大佬才能提供,可以付费\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 121164495, \"group_id\": 640229084, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JavaScript/nodejs/vue/react前\", \"message_id\": \"Jike3Ac40s8AAnkQSlfIr2LaIH4B\", \"raw_message\": \"比如,我就有一些可以付费的需求,例如,某个功能的应用场景,像这些需求是需要有开发经验的大佬才能提供,可以付费\", \"message_type\": \"group\"}','付费',0,'2022-07-22 03:58:55',NULL),(852,'202272212450118','{\"seq\": 162071, \"atme\": false, \"font\": \"宋体\", \"rand\": 1773628257, \"time\": 1658462690, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 119, \"sex\": \"male\", \"area\": \"冰岛\", \"card\": \"js小白2\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3386412004, \"nickname\": \"望\"}, \"message\": [{\"text\": \"更别说付费标准这些谁来定义了\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 3386412004, \"group_id\": 640229084, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JavaScript/nodejs/vue/react前\", \"message_id\": \"Jike3MnYi+QAAnkXabdrYWLaIeIB\", \"raw_message\": \"更别说付费标准这些谁来定义了\", \"message_type\": \"group\"}','付费',0,'2022-07-22 04:04:50',NULL),(853,'2022722121030130','{\"seq\": 87718, \"atme\": false, \"font\": \"宋体\", \"rand\": 1726732710, \"time\": 1658463030, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"豆子\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2082423304, \"nickname\": \"豆子🌸\"}, \"message\": [{\"text\": \"乡下人更不会花钱去消费肯德基跟华莱士\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2082423304, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE 前端划水群\", \"message_id\": \"J/+MYHwfQggAAVamZuvZpmLaIzYB\", \"raw_message\": \"乡下人更不会花钱去消费肯德基跟华莱士\", \"message_type\": \"group\"}','花钱',0,'2022-07-22 04:10:30',NULL),(854,'2022722122253154','{\"seq\": 162204, \"atme\": false, \"font\": \"宋体\", \"rand\": 940554266, \"time\": 1658463773, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"\", \"card\": \"落魄前端-在线炒粉\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2965873351, \"nickname\": \"⁣⁠⁣⁠⁣⁠⁣⁠⁣⁠⁣⁠\"}, \"message\": [{\"text\": \"你给后端说帮帮忙\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2965873351, \"group_id\": 1160215841, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue element有问必答群\", \"message_id\": \"RSd9IbDHoscAAnmcOA+4GmLaJh0B\", \"raw_message\": \"你给后端说帮帮忙\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 04:22:53',NULL),(855,'2022722122319168','{\"seq\": 162207, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 417867681, \"time\": 1658463799, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 120, \"sex\": \"male\", \"area\": \"哥伦比亚\", \"card\": \"青岛\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 976556370, \"nickname\": \"知晓\"}, \"message\": [{\"text\": \"后端不帮忙 怼我\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 976556370, \"group_id\": 1160215841, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue element有问必答群\", \"message_id\": \"RSd9ITo1EVIAAnmfGOgnoWLaJjcB\", \"raw_message\": \"后端不帮忙 怼我\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 04:23:19',NULL),(856,'2022722123457126','{\"seq\": 419350, \"atme\": false, \"font\": \"宋体\", \"rand\": 1287643102, \"time\": 1658464497, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 111, \"sex\": \"male\", \"area\": \"长春\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 306767746, \"nickname\": \"Persist\"}, \"message\": [{\"text\": \"萌新求助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 306767746, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6xJI54IABmYWTL/f3mLaKPEB\", \"raw_message\": \"萌新求助\", \"message_type\": \"group\"}','求助',0,'2022-07-22 04:34:57',NULL),(857,'2022722125348137','{\"seq\": 14000, \"atme\": false, \"font\": \"宋体\", \"rand\": 1748154694, \"time\": 1658465627, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1153597173, \"nickname\": \"财神备案域名\"}, \"message\": [{\"text\": \"谁有备案com联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1153597173, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VETCfvUAADawaDK5RmLaLVsB\", \"raw_message\": \"谁有备案com联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 04:53:48',NULL),(858,'2022722125348188','{\"seq\": 14000, \"atme\": false, \"font\": \"宋体\", \"rand\": 1748154694, \"time\": 1658465627, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1153597173, \"nickname\": \"财神备案域名\"}, \"message\": [{\"text\": \"谁有备案com联系我\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1153597173, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VETCfvUAADawaDK5RmLaLVsB\", \"raw_message\": \"谁有备案com联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 04:53:48',NULL),(859,'202272213649137','{\"seq\": 6509, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 69962761, \"time\": 1658466409, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 669577526, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"tp5 thinkphp 长春 吉林\", \"message_id\": \"J+jxNkN01uwAABltBCuMCWLaMGkB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 05:06:49',NULL),(860,'20227221374113','{\"seq\": 33683, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1415659993, \"time\": 1658466424, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 1131730668, \"nickname\": \"system\"}, \"message\": [{\"text\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、、\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1131730668, \"group_id\": 821112880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP/thinkPHP/tp5开发群\", \"message_id\": \"MPEwMEN01uwAAIOTVGFB2WLaMHgB\", \"raw_message\": \"php全栈工程师接单 价格合理 不坑不骗 bug问题免费帮忙 学生毕设价格优惠 另收徒教学编程 有兴趣的联系我、、\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 05:07:04',NULL),(861,'2022722132217178','{\"seq\": 1055890, \"atme\": false, \"font\": \"宋体\", \"rand\": 1210923710, \"time\": 1658467337, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"阿尔巴尼亚\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1121566654, \"nickname\": \"做个梦给你\"}, \"message\": [{\"text\": \"帮忙测试一下,兄弟们\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1121566654, \"group_id\": 305572224, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/vue/react/angular/no\", \"message_id\": \"EjapgELZv74AEBySSC06vmLaNAkB\", \"raw_message\": \"帮忙测试一下,兄弟们\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 05:22:17',NULL),(862,'2022722132420114','{\"seq\": 17248, \"atme\": false, \"font\": \"宋体\", \"rand\": 1843296904, \"time\": 1658467460, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3192245354, \"nickname\": \"子呦丶\"}, \"message\": [{\"text\": \"我现在想娶妻生子,但我又不想花钱你们说怎么办啊\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3192245354, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVgr5FzGoAAENgbd56iGLaNIQB\", \"raw_message\": \"我现在想娶妻生子,但我又不想花钱你们说怎么办啊\", \"message_type\": \"group\"}','花钱',0,'2022-07-22 05:24:20',NULL),(863,'202272213253166','{\"seq\": 17260, \"atme\": false, \"font\": \"宋体\", \"rand\": 1237162500, \"time\": 1658467503, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2322971700, \"nickname\": \"棋王\"}, \"message\": [{\"text\": \"不花钱\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2322971700, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVgop1vDQAAENsSb2aBGLaNK8B\", \"raw_message\": \"不花钱\", \"message_type\": \"group\"}','花钱',0,'2022-07-22 05:25:03',NULL),(864,'2022722133411137','{\"seq\": 497418, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2394383548, \"time\": 1658468051, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"风餐露宿小菜虎\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1003038121, \"nickname\": \"My dream.\"}, \"source\": {\"seq\": 497416, \"rand\": 2736200760, \"time\": 1658468013, \"message\": \"我有桶有水,自己会洗\", \"user_id\": 1013644379}, \"message\": [{\"qq\": 1013644379, \"text\": \"@problue\", \"type\": \"at\"}, {\"text\": \" 自己洗,跟别人帮忙洗,完全不同\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1003038121, \"group_id\": 387395778, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Element UI Vue 学习交流\", \"message_id\": \"FxcwwjvJJakAB5cKjrdkvGLaNtMB\", \"raw_message\": \"@problue 自己洗,跟别人帮忙洗,完全不同\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 05:34:11',NULL),(865,'2022722134137169','{\"seq\": 617370, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2925343072, \"time\": 1658468497, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 33, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1114396764, \"nickname\": \"qq名\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/1114396764/583575104-3044868664-2183188986EB2EE506DDA435731B98EE/0?term=2\", \"file\": \"2183188986eb2ee506dda435731b98ee165442-982-661.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"大佬们帮忙看下 这个错误如何排查\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1114396764, \"group_id\": 583575104, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"vue.js\", \"message_id\": \"IsimQEJsWFwACWuarl0xYGLaOJEB\", \"raw_message\": \"[图片]大佬们帮忙看下 这个错误如何排查\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 05:41:37',NULL),(866,'2022722135311143','{\"seq\": 2144, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1569287940, \"time\": 1658469191, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"female\", \"area\": \"咸宁\", \"card\": \"软著专利撰写代报\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 731822665, \"nickname\": \"Melody\"}, \"message\": [{\"text\": \"一手专利,软著,商标,有需要可以联系我噢\", \"type\": \"text\"}, {\"id\": 63, \"text\": \"玫瑰\", \"type\": \"face\"}], \"self_id\": 1841031740, \"user_id\": 731822665, \"group_id\": 591621349, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"程序员/UI/产品/市场求\", \"message_id\": \"I0Ns5SueukkAAAhgXYlvBGLaO0cB\", \"raw_message\": \"一手专利,软著,商标,有需要可以联系我噢[玫瑰]\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 05:53:11',NULL),(867,'202272214245113','{\"seq\": 14006, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1690662604, \"time\": 1658469765, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3554667891, \"nickname\": \"柠檬酸.\"}, \"message\": [{\"text\": \"106短信&400电话:\\r【106三网短信群发】可发一切正规内容\\r\\r法务咨询、停息挂账、POS机,保健品,招聘,地产,教育,营销商超,游戏,电商,促销、建材、4S店短信等都可发\\r\\r【400电话】免月租,免选号费,另赠送9大基础功能+2项增值服务\\r\\r【空号检测】,全网超低价有需要的可以联系我哦 免费测试\\r注册就送号码检测10000条测试免费体验:http://bjcms.tinree.com/#share/2452\\r\\r微信:yq1998061\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3554667891, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VNPf7XMAADa2ZMV2zGLaPYUB\", \"raw_message\": \"106短信&400电话:\\r【106三网短信群发】可发一切正规内容\\r\\r法务咨询、停息挂账、POS机,保健品,招聘,地产,教育,营销商超,游戏,电商,促销、建材、4S店短信等都可发\\r\\r【400电话】免月租,免选号费,另赠送9大基础功能+2项增值服务\\r\\r【空号检测】,全网超低价有需要的可以联系我哦 免费测试\\r注册就送号码检测10000条测试免费体验:http://bjcms.tinree.com/#share/2452\\r\\r微信:yq1998061\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 06:02:45',NULL),(868,'202272214245157','{\"seq\": 14006, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1690662604, \"time\": 1658469765, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3554667891, \"nickname\": \"柠檬酸.\"}, \"message\": [{\"text\": \"106短信&400电话:\\r【106三网短信群发】可发一切正规内容\\r\\r法务咨询、停息挂账、POS机,保健品,招聘,地产,教育,营销商超,游戏,电商,促销、建材、4S店短信等都可发\\r\\r【400电话】免月租,免选号费,另赠送9大基础功能+2项增值服务\\r\\r【空号检测】,全网超低价有需要的可以联系我哦 免费测试\\r注册就送号码检测10000条测试免费体验:http://bjcms.tinree.com/#share/2452\\r\\r微信:yq1998061\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 3554667891, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VNPf7XMAADa2ZMV2zGLaPYUB\", \"raw_message\": \"106短信&400电话:\\r【106三网短信群发】可发一切正规内容\\r\\r法务咨询、停息挂账、POS机,保健品,招聘,地产,教育,营销商超,游戏,电商,促销、建材、4S店短信等都可发\\r\\r【400电话】免月租,免选号费,另赠送9大基础功能+2项增值服务\\r\\r【空号检测】,全网超低价有需要的可以联系我哦 免费测试\\r注册就送号码检测10000条测试免费体验:http://bjcms.tinree.com/#share/2452\\r\\r微信:yq1998061\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 06:02:45',NULL),(869,'2022722141217121','{\"seq\": 419724, \"atme\": false, \"font\": \"方正硬笔行书简体_非压缩版\", \"rand\": 982684355, \"time\": 1658470337, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2289524584, \"nickname\": \". 靓\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/2289524584/599777771-2757784356-75668722FF9B92CCC727738FB30E65FE/0?term=2\", \"file\": \"75668722ff9b92ccc727738fb30e65fe9795-730-60.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"大佬帮忙解决一下\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2289524584, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h64h3X2gABmeMOpKSw2LaP8EB\", \"raw_message\": \"[图片]大佬帮忙解决一下\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 06:12:17',NULL),(870,'2022722141741113','{\"seq\": 76240, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2339330904, \"time\": 1658470661, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"绍杰\"}, \"message\": [{\"text\": \"有解决不了的bug,给点好处,加我,可以帮忙解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1336322173, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdU+mqH0AASnQi29bWGLaQQUB\", \"raw_message\": \"有解决不了的bug,给点好处,加我,可以帮忙解决\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 06:17:41',NULL),(871,'2022722141741123','{\"seq\": 76240, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2339330904, \"time\": 1658470661, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"绍杰\"}, \"message\": [{\"text\": \"有解决不了的bug,给点好处,加我,可以帮忙解决\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1336322173, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdU+mqH0AASnQi29bWGLaQQUB\", \"raw_message\": \"有解决不了的bug,给点好处,加我,可以帮忙解决\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 06:17:41',NULL),(872,'2022722141916145','{\"seq\": 76242, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3304435924, \"time\": 1658470756, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2659897831, \"nickname\": \"‭\"}, \"message\": [{\"text\": \"不就有偿解决问题呗\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2659897831, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdZ6K0ecAASnSxPWw1GLaQWQB\", \"raw_message\": \"不就有偿解决问题呗\", \"message_type\": \"group\"}','有偿',0,'2022-07-22 06:19:16',NULL),(873,'2022722141916156','{\"seq\": 76242, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3304435924, \"time\": 1658470756, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2659897831, \"nickname\": \"‭\"}, \"message\": [{\"text\": \"不就有偿解决问题呗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2659897831, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdZ6K0ecAASnSxPWw1GLaQWQB\", \"raw_message\": \"不就有偿解决问题呗\", \"message_type\": \"group\"}','有偿',0,'2022-07-22 06:19:16',NULL),(874,'202272214260157','{\"seq\": 694630, \"atme\": false, \"font\": \"宋体\", \"rand\": 868796944, \"time\": 1658471160, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 19, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3490079908, \"nickname\": \"Hulk\"}, \"message\": [{\"text\": \"兄弟们,我可以转发一个东西嘛,是我弟弟,姑姑家里面突发事件,有好心人可以帮助一点是一点,如果同意我就转发进来\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 3490079908, \"group_id\": 875365038, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React/Uniapp/前端开发\", \"message_id\": \"NC0CrtAGZKQACplmM8jKEGLaQvgB\", \"raw_message\": \"兄弟们,我可以转发一个东西嘛,是我弟弟,姑姑家里面突发事件,有好心人可以帮助一点是一点,如果同意我就转发进来\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 06:26:00',NULL),(875,'2022722142613188','{\"seq\": 1564054, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4054303119, \"time\": 1658471173, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 38, \"sex\": \"male\", \"area\": \"北京\", \"card\": \"[北京]-小秃秃\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 105662411, \"nickname\": \"田间小草\"}, \"message\": [{\"text\": \"能花钱解决问题的这哥们 日后必是大佬\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 105662411, \"group_id\": 386092459, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \".NET应用程序框架交流\", \"message_id\": \"FwNNqwZMR8sAF92W8afBj2LaQwUB\", \"raw_message\": \"能花钱解决问题的这哥们 日后必是大佬\", \"message_type\": \"group\"}','花钱',0,'2022-07-22 06:26:13',NULL),(876,'2022722142628156','{\"seq\": 14938, \"atme\": false, \"font\": \"宋体\", \"rand\": 1403409335, \"time\": 1658471188, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 19, \"sex\": \"male\", \"area\": \"\", \"card\": \"接单\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3490079908, \"nickname\": \"Hulk\"}, \"message\": [{\"text\": \"兄弟们,我可以转发一个东西嘛,是我弟弟,姑姑家里面突发事件,有好心人可以帮助一点是一点,如果同意我就转发进来\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3490079908, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaNAGZKQAADpaU6ZTt2LaQxQB\", \"raw_message\": \"兄弟们,我可以转发一个东西嘛,是我弟弟,姑姑家里面突发事件,有好心人可以帮助一点是一点,如果同意我就转发进来\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 06:26:28',NULL),(877,'2022722142628188','{\"seq\": 14938, \"atme\": false, \"font\": \"宋体\", \"rand\": 1403409335, \"time\": 1658471188, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 19, \"sex\": \"male\", \"area\": \"\", \"card\": \"接单\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3490079908, \"nickname\": \"Hulk\"}, \"message\": [{\"text\": \"兄弟们,我可以转发一个东西嘛,是我弟弟,姑姑家里面突发事件,有好心人可以帮助一点是一点,如果同意我就转发进来\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 3490079908, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaNAGZKQAADpaU6ZTt2LaQxQB\", \"raw_message\": \"兄弟们,我可以转发一个东西嘛,是我弟弟,姑姑家里面突发事件,有好心人可以帮助一点是一点,如果同意我就转发进来\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 06:26:28',NULL),(878,'2022722144028126','{\"seq\": 420021, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 989420607, \"time\": 1658472028, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 120, \"sex\": \"male\", \"area\": \"\", \"card\": \"李嘉图\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1102517143, \"nickname\": \"李嘉图\"}, \"message\": [{\"text\": \"自学 + 学到东西的 = 能解决问题 && 持续解决问题 = 工作的基本素质\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1102517143, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h60G3E5cABmi1OvlcP2LaRlwB\", \"raw_message\": \"自学 + 学到东西的 = 能解决问题 && 持续解决问题 = 工作的基本素质\", \"message_type\": \"group\"}','解决问题',0,'2022-07-22 06:40:28',NULL),(879,'2022722144219174','{\"seq\": 76256, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1253077984, \"time\": 1658472139, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"绍杰\"}, \"message\": [{\"text\": \"有解决不了的bug,给点好处,加我,可以帮忙解决\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1336322173, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdU+mqH0AASngSrBz4GLaRssB\", \"raw_message\": \"有解决不了的bug,给点好处,加我,可以帮忙解决\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 06:42:19',NULL),(880,'2022722144219176','{\"seq\": 76256, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1253077984, \"time\": 1658472139, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1336322173, \"nickname\": \"绍杰\"}, \"message\": [{\"text\": \"有解决不了的bug,给点好处,加我,可以帮忙解决\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1336322173, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdU+mqH0AASngSrBz4GLaRssB\", \"raw_message\": \"有解决不了的bug,给点好处,加我,可以帮忙解决\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 06:42:19',NULL),(881,'2022722144219144','{\"seq\": 694685, \"atme\": false, \"font\": \"宋体\", \"rand\": 1322977531, \"time\": 1658472139, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 19, \"sex\": \"male\", \"area\": \"美国\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3490079908, \"nickname\": \"Hulk\"}, \"source\": {\"seq\": 694677, \"rand\": 19595346, \"time\": 1658472012, \"message\": \"水滴筹抽成很高的\", \"user_id\": 2606580141}, \"message\": [{\"qq\": 2606580141, \"text\": \"@南京-web-接vue小程序ngjq原生外包\", \"type\": \"at\"}, {\"text\": \" 不知道,是姑姑发出来的,我只是尽力帮助\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 3490079908, \"group_id\": 875365038, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React/Uniapp/前端开发\", \"message_id\": \"NC0CrtAGZKQACpmdTtsI+2LaRssB\", \"raw_message\": \"@南京-web-接vue小程序ngjq原生外包 不知道,是姑姑发出来的,我只是尽力帮助\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 06:42:19',NULL),(882,'2022722144337146','{\"seq\": 162805, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3298651397, \"time\": 1658472217, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 314461482, \"nickname\": \"忽尔今夏\"}, \"message\": [{\"text\": \"定制各类型网站!软件开发,APP、微信网站、手机网站、小程序,有需要的朋友可随时联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 314461482, \"group_id\": 132075235, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"php,java,小程序\", \"message_id\": \"B99O4xK+TSoAAnv1xJ1tBWLaRxkB\", \"raw_message\": \"定制各类型网站!软件开发,APP、微信网站、手机网站、小程序,有需要的朋友可随时联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 06:43:37',NULL),(883,'2022722144621133','{\"seq\": 694702, \"atme\": false, \"font\": \"宋体\", \"rand\": 1180671525, \"time\": 1658472381, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"武汉\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 209192670, \"nickname\": \"Rankgice\"}, \"message\": [{\"text\": \"大佬帮忙看看\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 209192670, \"group_id\": 875365038, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React/Uniapp/前端开发\", \"message_id\": \"NC0Crgx4Bt4ACpmuRl+eJWLaR70B\", \"raw_message\": \"大佬帮忙看看\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 06:46:21',NULL),(884,'2022722144735146','{\"seq\": 694709, \"atme\": false, \"font\": \"宋体\", \"rand\": 781506725, \"time\": 1658472454, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"武汉\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 209192670, \"nickname\": \"Rankgice\"}, \"message\": [{\"qq\": 752470614, \"text\": \"@他什么都会,但没完全会\", \"type\": \"at\"}, {\"text\": \" 大佬帮忙指正一下\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 209192670, \"group_id\": 875365038, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React/Uniapp/前端开发\", \"message_id\": \"NC0Crgx4Bt4ACpm1LpTYpWLaSAYB\", \"raw_message\": \"@他什么都会,但没完全会 大佬帮忙指正一下\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 06:47:35',NULL),(885,'2022722145542143','{\"seq\": 88062, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 365110069, \"time\": 1658472942, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"female\", \"area\": \"\", \"card\": \"前端小白\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3289598618, \"nickname\": \".\"}, \"message\": [{\"text\": \"求助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3289598618, \"group_id\": 671059040, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"VUE 前端划水群\", \"message_id\": \"J/+MYMQTSpoAAVf+FcMjNWLaSe4B\", \"raw_message\": \"求助\", \"message_type\": \"group\"}','求助',0,'2022-07-22 06:55:42',NULL),(886,'2022722145555171','{\"seq\": 897669, \"atme\": false, \"font\": \"宋体\", \"rand\": 1468493918, \"time\": 1658472955, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1170854258, \"nickname\": \"have\"}, \"message\": [{\"qq\": 1902282702, \"text\": \"@妄想徒手摘星\", \"type\": \"at\"}, {\"text\": \" 帮忙看下\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1170854258, \"group_id\": 301824988, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Web前端开发Vue程序员壹\", \"message_id\": \"Ef173EXJ0XIADbKFV4dwXmLaSfsB\", \"raw_message\": \"@妄想徒手摘星 帮忙看下\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 06:55:55',NULL),(887,'202272214565101','{\"seq\": 17748, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1043711435, \"time\": 1658472965, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3289598618, \"nickname\": \".\"}, \"message\": [{\"text\": \"求助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3289598618, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVgsQTSpoAAEVUPjXFy2LaSgUB\", \"raw_message\": \"求助\", \"message_type\": \"group\"}','求助',0,'2022-07-22 06:56:05',NULL),(888,'2022722145714103','{\"seq\": 17755, \"atme\": false, \"font\": \"宋体\", \"rand\": 84220172, \"time\": 1658473034, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 38, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 297286474, \"nickname\": \"水彩涂鸦\"}, \"message\": [{\"qq\": 3289598618, \"text\": \"@.\", \"type\": \"at\"}, {\"text\": \" 向兄弟页面求助\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 297286474, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVghG4O0oAAEVbBQUZDGLaSkoB\", \"raw_message\": \"@. 向兄弟页面求助\", \"message_type\": \"group\"}','求助',0,'2022-07-22 06:57:14',NULL),(889,'2022722145916180','{\"seq\": 1380411, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2480290154, \"time\": 1658473156, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 20, \"sex\": \"male\", \"area\": \"菏泽\", \"card\": \"SKY[交流]红烛\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 784452317, \"nickname\": \"˗ˏˋ♡ˎˊ˗\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/784452317/2013934898-2628164406-8ABD1B72E7881D7436421A450FDC6A09/0?term=2\", \"file\": \"8abd1b72e7881d7436421a450fdc6a09101397-2112-766.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"大佬们求助了,我想在拼接的c:if中取这个方法的变量值\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 784452317, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphci7Byt0AFRA7k9Y5amLaSsQB\", \"raw_message\": \"[图片]大佬们求助了,我想在拼接的c:if中取这个方法的变量值\", \"message_type\": \"group\"}','求助',0,'2022-07-22 06:59:16',NULL),(890,'202272215755123','{\"seq\": 694798, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 456545691, \"time\": 1658473674, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"403 不接单\", \"role\": \"admin\", \"level\": 5, \"title\": \"白,细,软\", \"user_id\": 915351420, \"nickname\": \"心の所には\"}, \"message\": [{\"text\": \"多看看理论也是对理解有帮助的\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 915351420, \"group_id\": 875365038, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React/Uniapp/前端开发\", \"message_id\": \"NC0CrjaPJ3wACpoOGzZVm2LaTMoB\", \"raw_message\": \"多看看理论也是对理解有帮助的\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 07:07:55',NULL),(891,'202272215838106','{\"seq\": 897685, \"atme\": false, \"font\": \"STSong\", \"rand\": 694536131, \"time\": 1658473718, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1170854258, \"nickname\": \"have\"}, \"message\": [{\"text\": \"哪位好心人帮忙看一下啊\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1170854258, \"group_id\": 301824988, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Web前端开发Vue程序员壹\", \"message_id\": \"Ef173EXJ0XIADbKVKWXHw2LaTPYB\", \"raw_message\": \"哪位好心人帮忙看一下啊\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 07:08:38',NULL),(892,'2022722153947104','{\"seq\": 958197, \"atme\": false, \"font\": \"宋体\", \"rand\": 1510291259, \"time\": 1658475587, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"阿富汗\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2110824941, \"nickname\": \"管管\"}, \"message\": [{\"text\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2110824941, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB33Qoe0ADp71WgU3O2LaVEMB\", \"raw_message\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 07:39:47',NULL),(893,'2022722153947141','{\"seq\": 958197, \"atme\": false, \"font\": \"宋体\", \"rand\": 1510291259, \"time\": 1658475587, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"阿富汗\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2110824941, \"nickname\": \"管管\"}, \"message\": [{\"text\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2110824941, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB33Qoe0ADp71WgU3O2LaVEMB\", \"raw_message\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 07:39:47',NULL),(894,'2022722154238150','{\"seq\": 958207, \"atme\": false, \"font\": \"宋体\", \"rand\": 2032448742, \"time\": 1658475758, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"female\", \"area\": \"\", \"card\": \"昭映雪\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3558906847, \"nickname\": \"昭映雪\"}, \"message\": [{\"text\": \"SyntaxError: Unexpected token \']\'\\n@我获得帮助 输入>功能()获得函数列表\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3558906847, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB9Qgm98ADp7/eSS05mLaVO4B\", \"raw_message\": \"SyntaxError: Unexpected token \']\'\\n@我获得帮助 输入>功能()获得函数列表\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 07:42:38',NULL),(895,'2022722154238182','{\"seq\": 958207, \"atme\": false, \"font\": \"宋体\", \"rand\": 2032448742, \"time\": 1658475758, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"female\", \"area\": \"\", \"card\": \"昭映雪\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3558906847, \"nickname\": \"昭映雪\"}, \"message\": [{\"text\": \"SyntaxError: Unexpected token \']\'\\n@我获得帮助 输入>功能()获得函数列表\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 3558906847, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB9Qgm98ADp7/eSS05mLaVO4B\", \"raw_message\": \"SyntaxError: Unexpected token \']\'\\n@我获得帮助 输入>功能()获得函数列表\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 07:42:38',NULL),(896,'2022722154238167','{\"seq\": 958208, \"atme\": false, \"font\": \"宋体\", \"rand\": 1592288184, \"time\": 1658475758, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"阿富汗\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2110824941, \"nickname\": \"管管\"}, \"message\": [{\"text\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2110824941, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB33Qoe0ADp8AXuhjuGLaVO4B\", \"raw_message\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 07:42:38',NULL),(897,'2022722154238117','{\"seq\": 958208, \"atme\": false, \"font\": \"宋体\", \"rand\": 1592288184, \"time\": 1658475758, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"阿富汗\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2110824941, \"nickname\": \"管管\"}, \"message\": [{\"text\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2110824941, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB33Qoe0ADp8AXuhjuGLaVO4B\", \"raw_message\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 07:42:38',NULL),(898,'2022722154243111','{\"seq\": 958211, \"atme\": false, \"font\": \"宋体\", \"rand\": 764327947, \"time\": 1658475763, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"阿富汗\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2110824941, \"nickname\": \"管管\"}, \"message\": [{\"text\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2110824941, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB33Qoe0ADp8DLY64C2LaVPMB\", \"raw_message\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 07:42:43',NULL),(899,'2022722154243178','{\"seq\": 958211, \"atme\": false, \"font\": \"宋体\", \"rand\": 764327947, \"time\": 1658475763, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"阿富汗\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2110824941, \"nickname\": \"管管\"}, \"message\": [{\"text\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2110824941, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB33Qoe0ADp8DLY64C2LaVPMB\", \"raw_message\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 07:42:43',NULL),(900,'2022722154335154','{\"seq\": 958218, \"atme\": false, \"font\": \"宋体\", \"rand\": 349754155, \"time\": 1658475815, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"阿富汗\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2110824941, \"nickname\": \"管管\"}, \"message\": [{\"text\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2110824941, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB33Qoe0ADp8KFNjTK2LaVScB\", \"raw_message\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 07:43:35',NULL),(901,'2022722154335110','{\"seq\": 958218, \"atme\": false, \"font\": \"宋体\", \"rand\": 349754155, \"time\": 1658475815, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"阿富汗\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2110824941, \"nickname\": \"管管\"}, \"message\": [{\"text\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2110824941, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB33Qoe0ADp8KFNjTK2LaVScB\", \"raw_message\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 07:43:35',NULL),(902,'2022722154358153','{\"seq\": 958222, \"atme\": false, \"font\": \"宋体\", \"rand\": 438509319, \"time\": 1658475838, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"阿富汗\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2110824941, \"nickname\": \"管管\"}, \"message\": [{\"text\": \"ReferenceError: 搜图 is not defined\\n@我获得帮助 输入>功能()获得函数列表\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2110824941, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB33Qoe0ADp8OGiMfB2LaVT4B\", \"raw_message\": \"ReferenceError: 搜图 is not defined\\n@我获得帮助 输入>功能()获得函数列表\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 07:43:58',NULL),(903,'2022722154358159','{\"seq\": 958222, \"atme\": false, \"font\": \"宋体\", \"rand\": 438509319, \"time\": 1658475838, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"阿富汗\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2110824941, \"nickname\": \"管管\"}, \"message\": [{\"text\": \"ReferenceError: 搜图 is not defined\\n@我获得帮助 输入>功能()获得函数列表\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2110824941, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB33Qoe0ADp8OGiMfB2LaVT4B\", \"raw_message\": \"ReferenceError: 搜图 is not defined\\n@我获得帮助 输入>功能()获得函数列表\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 07:43:58',NULL),(904,'2022722154414120','{\"seq\": 958225, \"atme\": false, \"font\": \"宋体\", \"rand\": 366579981, \"time\": 1658475854, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"阿富汗\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2110824941, \"nickname\": \"管管\"}, \"message\": [{\"text\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2110824941, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB33Qoe0ADp8RFdmRDWLaVU4B\", \"raw_message\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 07:44:14',NULL),(905,'2022722154414102','{\"seq\": 958225, \"atme\": false, \"font\": \"宋体\", \"rand\": 366579981, \"time\": 1658475854, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"阿富汗\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2110824941, \"nickname\": \"管管\"}, \"message\": [{\"text\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2110824941, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB33Qoe0ADp8RFdmRDWLaVU4B\", \"raw_message\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 07:44:14',NULL),(906,'2022722155041118','{\"seq\": 278600, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1010024128, \"time\": 1658476241, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1908587440, \"nickname\": \"海\"}, \"message\": [{\"text\": \"老铁们 帮忙解答一下呗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1908587440, \"group_id\": 692522608, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端Vue开发程序员贰\", \"message_id\": \"KUcOcHHCu7AABEBIPDO+wGLaVtEB\", \"raw_message\": \"老铁们 帮忙解答一下呗\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 07:50:41',NULL),(907,'202272216056125','{\"seq\": 14017, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1733203997, \"time\": 1658476856, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3554667891, \"nickname\": \"柠檬酸.\"}, \"message\": [{\"text\": \"106短信&400电话:\\r【106三网短信群发】可发一切正规内容\\r\\r法务咨询、停息挂账、POS机,保健品,招聘,地产,教育,营销商超,游戏,电商,促销、建材、4S店短信等都可发\\r\\r【400电话】免月租,免选号费,另赠送9大基础功能+2项增值服务\\r\\r【空号检测】,全网超低价有需要的可以联系我哦 免费测试\\r注册就送号码检测10000条测试免费体验:http://bjcms.tinree.com/#share/2452\\r\\r微信:yq1998061\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3554667891, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VNPf7XMAADbBZ06YHWLaWTgB\", \"raw_message\": \"106短信&400电话:\\r【106三网短信群发】可发一切正规内容\\r\\r法务咨询、停息挂账、POS机,保健品,招聘,地产,教育,营销商超,游戏,电商,促销、建材、4S店短信等都可发\\r\\r【400电话】免月租,免选号费,另赠送9大基础功能+2项增值服务\\r\\r【空号检测】,全网超低价有需要的可以联系我哦 免费测试\\r注册就送号码检测10000条测试免费体验:http://bjcms.tinree.com/#share/2452\\r\\r微信:yq1998061\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 08:00:56',NULL),(908,'202272216056181','{\"seq\": 14017, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1733203997, \"time\": 1658476856, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3554667891, \"nickname\": \"柠檬酸.\"}, \"message\": [{\"text\": \"106短信&400电话:\\r【106三网短信群发】可发一切正规内容\\r\\r法务咨询、停息挂账、POS机,保健品,招聘,地产,教育,营销商超,游戏,电商,促销、建材、4S店短信等都可发\\r\\r【400电话】免月租,免选号费,另赠送9大基础功能+2项增值服务\\r\\r【空号检测】,全网超低价有需要的可以联系我哦 免费测试\\r注册就送号码检测10000条测试免费体验:http://bjcms.tinree.com/#share/2452\\r\\r微信:yq1998061\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 3554667891, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VNPf7XMAADbBZ06YHWLaWTgB\", \"raw_message\": \"106短信&400电话:\\r【106三网短信群发】可发一切正规内容\\r\\r法务咨询、停息挂账、POS机,保健品,招聘,地产,教育,营销商超,游戏,电商,促销、建材、4S店短信等都可发\\r\\r【400电话】免月租,免选号费,另赠送9大基础功能+2项增值服务\\r\\r【空号检测】,全网超低价有需要的可以联系我哦 免费测试\\r注册就送号码检测10000条测试免费体验:http://bjcms.tinree.com/#share/2452\\r\\r微信:yq1998061\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 08:00:56',NULL),(909,'202272216226163','{\"seq\": 420795, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1115648914, \"time\": 1658476946, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2996882096, \"nickname\": \"所爱隔山海,山海皆可平\"}, \"source\": {\"seq\": 420791, \"rand\": 2147430049, \"time\": 1658476903, \"message\": \"定时器里放swiper\", \"user_id\": 1443844172}, \"message\": [{\"qq\": 1443844172, \"text\": \"@憨憨可达鸭(react)\", \"type\": \"at\"}, {\"text\": \" 不会啊,能通过一下好友请求吗,可以付费的,大佬\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2996882096, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h67KgyrAABmu7Qn9zkmLaWZIB\", \"raw_message\": \"@憨憨可达鸭(react) 不会啊,能通过一下好友请求吗,可以付费的,大佬\", \"message_type\": \"group\"}','付费',0,'2022-07-22 08:02:26',NULL),(910,'202272216418139','{\"seq\": 76274, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3952957399, \"time\": 1658477058, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 31, \"sex\": \"male\", \"area\": \"邵阳\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1903076, \"nickname\": \"Jerry\"}, \"message\": [{\"text\": \"我上次在 JD买的 热水器 都是给我送到家里还帮忙抗到楼上\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1903076, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdQAdCeQAASny651X12LaWgIB\", \"raw_message\": \"我上次在 JD买的 热水器 都是给我送到家里还帮忙抗到楼上\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 08:04:18',NULL),(911,'202272216418174','{\"seq\": 76274, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3952957399, \"time\": 1658477058, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 31, \"sex\": \"male\", \"area\": \"邵阳\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1903076, \"nickname\": \"Jerry\"}, \"message\": [{\"text\": \"我上次在 JD买的 热水器 都是给我送到家里还帮忙抗到楼上\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1903076, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdQAdCeQAASny651X12LaWgIB\", \"raw_message\": \"我上次在 JD买的 热水器 都是给我送到家里还帮忙抗到楼上\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 08:04:18',NULL),(912,'202272216557151','{\"seq\": 749276, \"atme\": false, \"font\": \"宋体\", \"rand\": 1591052003, \"time\": 1658477157, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 491010264, \"nickname\": \"Jian\"}, \"message\": [{\"text\": \"uniapp 有偿求助 无法删除本地视频\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 491010264, \"group_id\": 718291670, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交\", \"message_id\": \"KtBC1h1EONgAC27cXtWG42LaWmUB\", \"raw_message\": \"uniapp 有偿求助 无法删除本地视频\", \"message_type\": \"group\"}','有偿',0,'2022-07-22 08:05:57',NULL),(913,'202272216613186','{\"seq\": 76281, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3016535119, \"time\": 1658477173, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 31, \"sex\": \"male\", \"area\": \"邵阳\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1903076, \"nickname\": \"Jerry\"}, \"message\": [{\"text\": \"人家没有义务帮忙抗到楼上啊 人家2个人 我自己几个亲戚花了大力气才抬上去\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1903076, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdQAdCeQAASn5s8ysT2LaWnUB\", \"raw_message\": \"人家没有义务帮忙抗到楼上啊 人家2个人 我自己几个亲戚花了大力气才抬上去\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 08:06:13',NULL),(914,'202272216613163','{\"seq\": 76281, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3016535119, \"time\": 1658477173, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 31, \"sex\": \"male\", \"area\": \"邵阳\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1903076, \"nickname\": \"Jerry\"}, \"message\": [{\"text\": \"人家没有义务帮忙抗到楼上啊 人家2个人 我自己几个亲戚花了大力气才抬上去\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1903076, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdQAdCeQAASn5s8ysT2LaWnUB\", \"raw_message\": \"人家没有义务帮忙抗到楼上啊 人家2个人 我自己几个亲戚花了大力气才抬上去\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 08:06:13',NULL),(915,'2022722161353151','{\"seq\": 76298, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 201214875, \"time\": 1658477633, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 31, \"sex\": \"male\", \"area\": \"邵阳\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1903076, \"nickname\": \"Jerry\"}, \"message\": [{\"text\": \"因为人家没有义务帮忙抬到3喽,且3-4百斤\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1903076, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdQAdCeQAASoKC/5Lm2LaXEEB\", \"raw_message\": \"因为人家没有义务帮忙抬到3喽,且3-4百斤\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 08:13:53',NULL),(916,'2022722161353139','{\"seq\": 76298, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 201214875, \"time\": 1658477633, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 31, \"sex\": \"male\", \"area\": \"邵阳\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1903076, \"nickname\": \"Jerry\"}, \"message\": [{\"text\": \"因为人家没有义务帮忙抬到3喽,且3-4百斤\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1903076, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdQAdCeQAASoKC/5Lm2LaXEEB\", \"raw_message\": \"因为人家没有义务帮忙抬到3喽,且3-4百斤\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 08:13:53',NULL),(917,'2022722161621166','{\"seq\": 76304, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3471175521, \"time\": 1658477781, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 31, \"sex\": \"male\", \"area\": \"邵阳\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1903076, \"nickname\": \"Jerry\"}, \"message\": [{\"text\": \"你说人家给你帮忙抗到3喽\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1903076, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdQAdCeQAASoQzuXvYWLaXNUB\", \"raw_message\": \"你说人家给你帮忙抗到3喽\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 08:16:21',NULL),(918,'2022722161621129','{\"seq\": 76304, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3471175521, \"time\": 1658477781, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 31, \"sex\": \"male\", \"area\": \"邵阳\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1903076, \"nickname\": \"Jerry\"}, \"message\": [{\"text\": \"你说人家给你帮忙抗到3喽\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1903076, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdQAdCeQAASoQzuXvYWLaXNUB\", \"raw_message\": \"你说人家给你帮忙抗到3喽\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 08:16:21',NULL),(919,'2022722162634132','{\"seq\": 958265, \"atme\": false, \"font\": \"宋体\", \"rand\": 616203817, \"time\": 1658478394, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"上海\", \"card\": \"郑州Java从此不做舔狗\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3175449063, \"nickname\": \"加油,董董同学\"}, \"message\": [{\"text\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的女孩子联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3175449063, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB71FgecADp85JLqGKWLaXzoB\", \"raw_message\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的女孩子联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 08:26:34',NULL),(920,'2022722162634101','{\"seq\": 958265, \"atme\": false, \"font\": \"宋体\", \"rand\": 616203817, \"time\": 1658478394, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"上海\", \"card\": \"郑州Java从此不做舔狗\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3175449063, \"nickname\": \"加油,董董同学\"}, \"message\": [{\"text\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的女孩子联系我\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 3175449063, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB71FgecADp85JLqGKWLaXzoB\", \"raw_message\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的女孩子联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 08:26:34',NULL),(921,'2022722162650106','{\"seq\": 958266, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 494136418, \"time\": 1658478410, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"female\", \"area\": \"\", \"card\": \"河南-哦呼\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 707302305, \"nickname\": \"哦呼\"}, \"message\": [{\"text\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的女孩子联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 707302305, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvByook6EADp86HXPsYmLaX0oB\", \"raw_message\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的女孩子联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 08:26:50',NULL),(922,'2022722162650130','{\"seq\": 958266, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 494136418, \"time\": 1658478410, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"female\", \"area\": \"\", \"card\": \"河南-哦呼\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 707302305, \"nickname\": \"哦呼\"}, \"message\": [{\"text\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的女孩子联系我\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 707302305, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvByook6EADp86HXPsYmLaX0oB\", \"raw_message\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的女孩子联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 08:26:50',NULL),(923,'2022722162714158','{\"seq\": 958267, \"atme\": false, \"font\": \"宋体\", \"rand\": 1209058961, \"time\": 1658478434, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"female\", \"area\": \"枣庄\", \"card\": \"草莓大师\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 2296584019, \"nickname\": \"-周升彬-\"}, \"message\": [{\"text\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的女孩子联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2296584019, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB4jjF1MADp87SBDGkWLaX2IB\", \"raw_message\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的女孩子联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 08:27:14',NULL),(924,'2022722162714143','{\"seq\": 958267, \"atme\": false, \"font\": \"宋体\", \"rand\": 1209058961, \"time\": 1658478434, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"female\", \"area\": \"枣庄\", \"card\": \"草莓大师\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 2296584019, \"nickname\": \"-周升彬-\"}, \"message\": [{\"text\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的女孩子联系我\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2296584019, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB4jjF1MADp87SBDGkWLaX2IB\", \"raw_message\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的女孩子联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 08:27:14',NULL),(925,'2022722162754109','{\"seq\": 958269, \"atme\": false, \"font\": \"宋体\", \"rand\": 400248680, \"time\": 1658478474, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"杭州\", \"card\": \"浙江-希月-网络安全\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2892532284, \"nickname\": \"想吃肉肉(ˉ﹃ˉ)\"}, \"message\": [{\"text\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的女孩子,cpdd,有需要这样的女孩子的防御的请联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2892532284, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB6xoijwADp89F9tPaGLaX4oB\", \"raw_message\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的女孩子,cpdd,有需要这样的女孩子的防御的请联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 08:27:54',NULL),(926,'2022722162754151','{\"seq\": 958269, \"atme\": false, \"font\": \"宋体\", \"rand\": 400248680, \"time\": 1658478474, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"杭州\", \"card\": \"浙江-希月-网络安全\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2892532284, \"nickname\": \"想吃肉肉(ˉ﹃ˉ)\"}, \"message\": [{\"text\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的女孩子,cpdd,有需要这样的女孩子的防御的请联系我\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2892532284, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB6xoijwADp89F9tPaGLaX4oB\", \"raw_message\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的女孩子,cpdd,有需要这样的女孩子的防御的请联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 08:27:54',NULL),(927,'2022722162843158','{\"seq\": 5383, \"atme\": false, \"font\": \"宋体\", \"rand\": 1549198184, \"time\": 1658478523, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"泸州\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 907248541, \"nickname\": \"Tom\"}, \"message\": [{\"text\": \"微乐有人接单没有\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 907248541, \"group_id\": 581532578, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/小程序外包交流\", \"message_id\": \"Iql7ojYTg50AABUHXFbjaGLaX7sB\", \"raw_message\": \"微乐有人接单没有\", \"message_type\": \"group\"}','人接单',0,'2022-07-22 08:28:43',NULL),(928,'2022722162843105','{\"seq\": 5383, \"atme\": false, \"font\": \"宋体\", \"rand\": 1549198184, \"time\": 1658478523, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"泸州\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 907248541, \"nickname\": \"Tom\"}, \"message\": [{\"text\": \"微乐有人接单没有\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 907248541, \"group_id\": 581532578, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/小程序外包交流\", \"message_id\": \"Iql7ojYTg50AABUHXFbjaGLaX7sB\", \"raw_message\": \"微乐有人接单没有\", \"message_type\": \"group\"}','人接单',0,'2022-07-22 08:28:43',NULL),(929,'2022722163212134','{\"seq\": 958270, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2076755862, \"time\": 1658478732, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 28, \"sex\": \"male\", \"area\": \"\", \"card\": \"北京-vuegis\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 729411039, \"nickname\": \"、空白\"}, \"message\": [{\"text\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的女孩子,cpdd,有需要这样的女孩子的防御的请联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 729411039, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvByt57d8ADp8+e8jHlmLaYIwB\", \"raw_message\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的女孩子,cpdd,有需要这样的女孩子的防御的请联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 08:32:12',NULL),(930,'2022722163212125','{\"seq\": 958270, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2076755862, \"time\": 1658478732, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 28, \"sex\": \"male\", \"area\": \"\", \"card\": \"北京-vuegis\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 729411039, \"nickname\": \"、空白\"}, \"message\": [{\"text\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的女孩子,cpdd,有需要这样的女孩子的防御的请联系我\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 729411039, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvByt57d8ADp8+e8jHlmLaYIwB\", \"raw_message\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的女孩子,cpdd,有需要这样的女孩子的防御的请联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 08:32:12',NULL),(931,'2022722163434124','{\"seq\": 958276, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3158725757, \"time\": 1658478874, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"扬州\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2074824267, \"nickname\": \"邦润 阿枫\"}, \"message\": [{\"text\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的男孩子的服务器的请联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2074824267, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB3urTksADp9EvEZUfWLaYRoB\", \"raw_message\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的男孩子的服务器的请联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 08:34:34',NULL),(932,'2022722163434135','{\"seq\": 958276, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3158725757, \"time\": 1658478874, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"扬州\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2074824267, \"nickname\": \"邦润 阿枫\"}, \"message\": [{\"text\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的男孩子的服务器的请联系我\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2074824267, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB3urTksADp9EvEZUfWLaYRoB\", \"raw_message\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的男孩子的服务器的请联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 08:34:34',NULL),(933,'2022722164054189','{\"seq\": 98222, \"atme\": false, \"font\": \"HelveticaNeue\", \"rand\": 91575289, \"time\": 1658479254, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 30, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 757622960, \"nickname\": \"舒舒\"}, \"message\": [{\"text\": \"群里哪位大佬有,跨境ERP系统源码,有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 757622960, \"group_id\": 871950839, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni-ui 交流群\", \"message_id\": \"M/jp9y0oaLAAAX+uBXVT+WLaYpYB\", \"raw_message\": \"群里哪位大佬有,跨境ERP系统源码,有偿\", \"message_type\": \"group\"}','有偿',0,'2022-07-22 08:40:54',NULL),(934,'2022722165358158','{\"seq\": 15003, \"atme\": false, \"font\": \"Microsoft YaHei\", \"rand\": 3724208556, \"time\": 1658480038, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1685389437, \"nickname\": \"Jerry\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/1685389437/698722664-2365361707-BAD56640ECEC64EB366D7EA36BEBE166/0?term=2\", \"file\": \"bad56640ecec64eb366d7ea36bebe166138483-1610-1219.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1685389437, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaGR1AH0AADqb3frprGLaZaYB\", \"raw_message\": \"[图片]拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"message_type\": \"group\"}','付费',0,'2022-07-22 08:53:58',NULL),(935,'2022722165358163','{\"seq\": 15003, \"atme\": false, \"font\": \"Microsoft YaHei\", \"rand\": 3724208556, \"time\": 1658480038, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1685389437, \"nickname\": \"Jerry\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/1685389437/698722664-2365361707-BAD56640ECEC64EB366D7EA36BEBE166/0?term=3\", \"file\": \"bad56640ecec64eb366d7ea36bebe166138483-1610-1219.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1685389437, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaGR1AH0AADqb3frprGLaZaYB\", \"raw_message\": \"[图片]拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"message_type\": \"group\"}','付费',0,'2022-07-22 08:53:58',NULL),(936,'202272216549115','{\"seq\": 1380853, \"atme\": false, \"font\": \"Microsoft YaHei\", \"rand\": 415011906, \"time\": 1658480049, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"SKY[交流]Jerry\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1685389437, \"nickname\": \"Jerry\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/1685389437/2013934898-3214300756-BAD56640ECEC64EB366D7EA36BEBE166/0?term=2\", \"file\": \"bad56640ecec64eb366d7ea36bebe166138483-1610-1219.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1685389437, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcmR1AH0AFRH1GLyUQmLaZbEB\", \"raw_message\": \"[图片]\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"message_type\": \"group\"}','付费',0,'2022-07-22 08:54:09',NULL),(937,'2022722165413146','{\"seq\": 278751, \"atme\": false, \"font\": \"Microsoft YaHei\", \"rand\": 293680555, \"time\": 1658480053, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1685389437, \"nickname\": \"Jerry\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/1685389437/692522608-2786528578-BAD56640ECEC64EB366D7EA36BEBE166/0?term=2\", \"file\": \"bad56640ecec64eb366d7ea36bebe166138483-1610-1219.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1685389437, \"group_id\": 692522608, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端Vue开发程序员贰\", \"message_id\": \"KUcOcGR1AH0ABEDfEYE1q2LaZbUB\", \"raw_message\": \"[图片]\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"message_type\": \"group\"}','付费',0,'2022-07-22 08:54:13',NULL),(938,'2022722165428125','{\"seq\": 76321, \"atme\": false, \"font\": \"Microsoft YaHei\", \"rand\": 2226723627, \"time\": 1658480068, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1685389437, \"nickname\": \"Jerry\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/1685389437/727364469-3084845704-BAD56640ECEC64EB366D7EA36BEBE166/0?term=2\", \"file\": \"bad56640ecec64eb366d7ea36bebe166138483-1610-1219.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1685389437, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdWR1AH0AASohhLkbK2LaZcQB\", \"raw_message\": \"[图片]\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"message_type\": \"group\"}','付费',0,'2022-07-22 08:54:28',NULL),(939,'2022722165428124','{\"seq\": 76321, \"atme\": false, \"font\": \"Microsoft YaHei\", \"rand\": 2226723627, \"time\": 1658480068, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1685389437, \"nickname\": \"Jerry\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/1685389437/727364469-3084845704-BAD56640ECEC64EB366D7EA36BEBE166/0?term=3\", \"file\": \"bad56640ecec64eb366d7ea36bebe166138483-1610-1219.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1685389437, \"group_id\": 727364469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"CSS/JS/VUE/ELEMENT/REACT/NODE/\", \"message_id\": \"K1qzdWR1AH0AASohhLkbK2LaZcQB\", \"raw_message\": \"[图片]\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"message_type\": \"group\"}','付费',0,'2022-07-22 08:54:28',NULL),(940,'2022722165432148','{\"seq\": 4154, \"atme\": false, \"font\": \"Microsoft YaHei\", \"rand\": 3890580561, \"time\": 1658480072, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1685389437, \"nickname\": \"Jerry\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/1685389437/1092036641-2273965068-BAD56640ECEC64EB366D7EA36BEBE166/0?term=2\", \"file\": \"bad56640ecec64eb366d7ea36bebe166138483-1610-1219.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1685389437, \"group_id\": 1092036641, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"react/vue/小程序/前端\", \"message_id\": \"QRcoIWR1AH0AABA65+WMUWLaZcgB\", \"raw_message\": \"[图片]\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"message_type\": \"group\"}','付费',0,'2022-07-22 08:54:32',NULL),(941,'2022722165453176','{\"seq\": 162091, \"atme\": false, \"font\": \"Microsoft YaHei\", \"rand\": 1044939527, \"time\": 1658480093, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1685389437, \"nickname\": \"Jerry\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/1685389437/640229084-2463453210-BAD56640ECEC64EB366D7EA36BEBE166/0?term=3\", \"file\": \"bad56640ecec64eb366d7ea36bebe166138483-1610-1219.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1685389437, \"group_id\": 640229084, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JavaScript/nodejs/vue/react前\", \"message_id\": \"Jike3GR1AH0AAnkrPkiDB2LaZd0B\", \"raw_message\": \"[图片]\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"message_type\": \"group\"}','付费',0,'2022-07-22 08:54:53',NULL),(942,'202272216553157','{\"seq\": 18038, \"atme\": false, \"font\": \"Microsoft YaHei\", \"rand\": 1613707627, \"time\": 1658480103, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1685389437, \"nickname\": \"Jerry\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/1685389437/881235330-3197099027-BAD56640ECEC64EB366D7EA36BEBE166/0?term=2\", \"file\": \"bad56640ecec64eb366d7ea36bebe166138483-1610-1219.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1685389437, \"group_id\": 881235330, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端开发vue程序员叁\", \"message_id\": \"NIaVgmR1AH0AAEZ2YC85a2LaZecB\", \"raw_message\": \"[图片]\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"message_type\": \"group\"}','付费',0,'2022-07-22 08:55:03',NULL),(943,'2022722165521180','{\"seq\": 521761, \"atme\": false, \"font\": \"Microsoft YaHei\", \"rand\": 2519032926, \"time\": 1658480121, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1685389437, \"nickname\": \"Jerry\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/1685389437/538246944-2542830036-BAD56640ECEC64EB366D7EA36BEBE166/0?term=2\", \"file\": \"bad56640ecec64eb366d7ea36bebe166138483-1610-1219.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1685389437, \"group_id\": 538246944, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JS、Vue、Element-UI技术栈\", \"message_id\": \"IBT/IGR1AH0AB/YhliVkXmLaZfkB\", \"raw_message\": \"[图片]\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"message_type\": \"group\"}','付费',0,'2022-07-22 08:55:21',NULL),(944,'2022722165521173','{\"seq\": 521761, \"atme\": false, \"font\": \"Microsoft YaHei\", \"rand\": 2519032926, \"time\": 1658480121, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1685389437, \"nickname\": \"Jerry\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/1685389437/538246944-2542830036-BAD56640ECEC64EB366D7EA36BEBE166/0?term=3\", \"file\": \"bad56640ecec64eb366d7ea36bebe166138483-1610-1219.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1685389437, \"group_id\": 538246944, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"JS、Vue、Element-UI技术栈\", \"message_id\": \"IBT/IGR1AH0AB/YhliVkXmLaZfkB\", \"raw_message\": \"[图片]\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"message_type\": \"group\"}','付费',0,'2022-07-22 08:55:21',NULL),(945,'2022722165536171','{\"seq\": 526820, \"atme\": false, \"font\": \"Microsoft YaHei\", \"rand\": 2477913350, \"time\": 1658480135, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1685389437, \"nickname\": \"Jerry\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/1685389437/687948914-2851114133-BAD56640ECEC64EB366D7EA36BEBE166/0?term=2\", \"file\": \"bad56640ecec64eb366d7ea36bebe166138483-1610-1219.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1685389437, \"group_id\": 687948914, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue、Nodejs 开发交流\", \"message_id\": \"KQFEcmR1AH0ACAnkk7H1BmLaZgcB\", \"raw_message\": \"[图片]\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"message_type\": \"group\"}','付费',0,'2022-07-22 08:55:36',NULL),(946,'2022722165617170','{\"seq\": 49180, \"atme\": false, \"font\": \"Microsoft YaHei\", \"rand\": 3338991269, \"time\": 1658480177, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1685389437, \"nickname\": \"Jerry\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/1685389437/863981142-2810437407-BAD56640ECEC64EB366D7EA36BEBE166/0?term=2\", \"file\": \"bad56640ecec64eb366d7ea36bebe166138483-1610-1219.png\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1685389437, \"group_id\": 863981142, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"程序员接单群\", \"message_id\": \"M39OVmR1AH0AAMAcxwT2pWLaZjEB\", \"raw_message\": \"[图片]\\r拍照后没能正确的剪裁。有人能做修正吗?拍照的时候有个框框(图片1),预览的图片希望能够只显示框框里的内容(图片2的黄框)。付费的任务。有兴趣的朋友联系我\", \"message_type\": \"group\"}','付费',0,'2022-07-22 08:56:17',NULL),(947,'20227221728116','{\"seq\": 448127, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1387972027, \"time\": 1658480528, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 2, \"sex\": \"male\", \"area\": \"\", \"card\": \"被禁言了\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 495435919, \"nickname\": \"石朗\"}, \"message\": [{\"text\": \"我在群里解决问题时候,管理员他都还没当上呢!现在玩起权限了,跟谁学的?\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 495435919, \"group_id\": 995147657, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端vue/element交流群\", \"message_id\": \"O1C/iR2HwI8ABtZ/UrrFu2LaZ5AB\", \"raw_message\": \"我在群里解决问题时候,管理员他都还没当上呢!现在玩起权限了,跟谁学的?\", \"message_type\": \"group\"}','解决问题',0,'2022-07-22 09:02:08',NULL),(948,'202272217623157','{\"seq\": 898166, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3928807982, \"time\": 1658480783, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 32, \"sex\": \"male\", \"area\": \"\", \"card\": \"北京-别和我一起学习\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 694174250, \"nickname\": \"和我一起学习吧\"}, \"message\": [{\"text\": \"css都要群友帮忙写\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 694174250, \"group_id\": 301824988, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Web前端开发Vue程序员壹\", \"message_id\": \"Ef173ClgQioADbR26izaLmLaaI8B\", \"raw_message\": \"css都要群友帮忙写\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 09:06:23',NULL),(949,'202272217634101','{\"seq\": 898170, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1771860568, \"time\": 1658480794, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 32, \"sex\": \"male\", \"area\": \"\", \"card\": \"北京-别和我一起学习\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 694174250, \"nickname\": \"和我一起学习吧\"}, \"message\": [{\"text\": \"继续帮忙写\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 694174250, \"group_id\": 301824988, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Web前端开发Vue程序员壹\", \"message_id\": \"Ef173ClgQioADbR6aZxyWGLaaJoB\", \"raw_message\": \"继续帮忙写\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 09:06:34',NULL),(950,'202272217201158','{\"seq\": 14269, \"atme\": false, \"font\": \"Helvetica\", \"rand\": 1937825725, \"time\": 1658481601, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1070542001, \"nickname\": \"觉~\"}, \"message\": [{\"text\": \"需要帮助吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1070542001, \"group_id\": 1163242725, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uni插件互助群\", \"message_id\": \"RVWs5T/PLLEAADe9c4DfvWLaa8EB\", \"raw_message\": \"需要帮助吗\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 09:20:01',NULL),(951,'2022722172824108','{\"seq\": 278929, \"atme\": false, \"font\": \"宋体\", \"rand\": 226603759, \"time\": 1658482104, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1962257451, \"nickname\": \" \"}, \"message\": [{\"text\": \"一会到家了 有没有大佬接单帮忙修个问题\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1962257451, \"group_id\": 692522608, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端Vue开发程序员贰\", \"message_id\": \"KUcOcHT1rCsABEGRDYGy72LabbgB\", \"raw_message\": \"一会到家了 有没有大佬接单帮忙修个问题\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 09:28:24',NULL),(952,'2022722173431138','{\"seq\": 958321, \"atme\": false, \"font\": \"宋体\", \"rand\": 1465477212, \"time\": 1658482471, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"阿拉伯联合酋长国\", \"card\": \"我是大师\", \"role\": \"member\", \"level\": 5, \"title\": \"\", \"user_id\": 2271091661, \"nickname\": \"$ÿĀ火柴人$ÿĀ\"}, \"message\": [{\"text\": \"与其在别人手下委曲求全。不如就出来闯一番自己的事业。安稳的工作安稳的生活。只不过是害怕出来面对的借口,所以我掏钱你们愿意和我一起创业吗?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2271091661, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB4deG80ADp9xV1loXGLabycB\", \"raw_message\": \"与其在别人手下委曲求全。不如就出来闯一番自己的事业。安稳的工作安稳的生活。只不过是害怕出来面对的借口,所以我掏钱你们愿意和我一起创业吗?\", \"message_type\": \"group\"}','掏钱',0,'2022-07-22 09:34:31',NULL),(953,'2022722173431138','{\"seq\": 958321, \"atme\": false, \"font\": \"宋体\", \"rand\": 1465477212, \"time\": 1658482471, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"阿拉伯联合酋长国\", \"card\": \"我是大师\", \"role\": \"member\", \"level\": 5, \"title\": \"\", \"user_id\": 2271091661, \"nickname\": \"$ÿĀ火柴人$ÿĀ\"}, \"message\": [{\"text\": \"与其在别人手下委曲求全。不如就出来闯一番自己的事业。安稳的工作安稳的生活。只不过是害怕出来面对的借口,所以我掏钱你们愿意和我一起创业吗?\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2271091661, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB4deG80ADp9xV1loXGLabycB\", \"raw_message\": \"与其在别人手下委曲求全。不如就出来闯一番自己的事业。安稳的工作安稳的生活。只不过是害怕出来面对的借口,所以我掏钱你们愿意和我一起创业吗?\", \"message_type\": \"group\"}','掏钱',0,'2022-07-22 09:34:31',NULL),(954,'2022722174031148','{\"seq\": 421084, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3735884331, \"time\": 1658482831, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 47, \"sex\": \"male\", \"area\": \"澳门\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 917197100, \"nickname\": \"致远网络\"}, \"message\": [{\"text\": \"哪位前端有空 帮忙改1个页面 报酬50元\", \"type\": \"text\"}, {\"id\": 49, \"text\": \"拥抱\", \"type\": \"face\"}], \"self_id\": 1841031740, \"user_id\": 917197100, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6zarUSwABmzc3q0SK2LacI8B\", \"raw_message\": \"哪位前端有空 帮忙改1个页面 报酬50元[拥抱]\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 09:40:31',NULL); -INSERT INTO `bus_orders` VALUES (955,'2022722174153113','{\"seq\": 14023, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2540410190, \"time\": 1658482913, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3554667891, \"nickname\": \"柠檬酸.\"}, \"message\": [{\"text\": \"106短信&400电话:\\r【106三网短信群发】可发一切正规内容\\r\\r法务咨询、停息挂账、POS机,保健品,招聘,地产,教育,营销商超,游戏,电商,促销、建材、4S店短信等都可发\\r\\r【400电话】免月租,免选号费,另赠送9大基础功能+2项增值服务\\r\\r【空号检测】,全网超低价有需要的可以联系我哦 免费测试\\r\\r\\r微信:yq1998061\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3554667891, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VNPf7XMAADbHl2uVTmLacOEB\", \"raw_message\": \"106短信&400电话:\\r【106三网短信群发】可发一切正规内容\\r\\r法务咨询、停息挂账、POS机,保健品,招聘,地产,教育,营销商超,游戏,电商,促销、建材、4S店短信等都可发\\r\\r【400电话】免月租,免选号费,另赠送9大基础功能+2项增值服务\\r\\r【空号检测】,全网超低价有需要的可以联系我哦 免费测试\\r\\r\\r微信:yq1998061\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 09:41:53',NULL),(956,'2022722174153160','{\"seq\": 14023, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2540410190, \"time\": 1658482913, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3554667891, \"nickname\": \"柠檬酸.\"}, \"message\": [{\"text\": \"106短信&400电话:\\r【106三网短信群发】可发一切正规内容\\r\\r法务咨询、停息挂账、POS机,保健品,招聘,地产,教育,营销商超,游戏,电商,促销、建材、4S店短信等都可发\\r\\r【400电话】免月租,免选号费,另赠送9大基础功能+2项增值服务\\r\\r【空号检测】,全网超低价有需要的可以联系我哦 免费测试\\r\\r\\r微信:yq1998061\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 3554667891, \"group_id\": 323286612, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"APP小程序源码开发搭建\", \"message_id\": \"E0T2VNPf7XMAADbHl2uVTmLacOEB\", \"raw_message\": \"106短信&400电话:\\r【106三网短信群发】可发一切正规内容\\r\\r法务咨询、停息挂账、POS机,保健品,招聘,地产,教育,营销商超,游戏,电商,促销、建材、4S店短信等都可发\\r\\r【400电话】免月租,免选号费,另赠送9大基础功能+2项增值服务\\r\\r【空号检测】,全网超低价有需要的可以联系我哦 免费测试\\r\\r\\r微信:yq1998061\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 09:41:53',NULL),(957,'2022722181458181','{\"seq\": 60574, \"atme\": false, \"font\": \"宋体\", \"rand\": 1705708271, \"time\": 1658484898, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"成都-hey\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 285036710, \"nickname\": \"hey\"}, \"message\": [{\"text\": \"公司为啥不愿意花钱在我们身上呀?是因为我们vue还没精通吗\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 285036710, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBRD9UKYAAOyeZasK72LaeKIB\", \"raw_message\": \"公司为啥不愿意花钱在我们身上呀?是因为我们vue还没精通吗\", \"message_type\": \"group\"}','花钱',0,'2022-07-22 10:14:58',NULL),(958,'2022722182758147','{\"seq\": 596846, \"atme\": false, \"font\": \"宋体\", \"rand\": 423821377, \"time\": 1658485678, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 2, \"title\": \"\", \"user_id\": 1417743769, \"nickname\": \"柴米油盐酱醋茶那点事儿\"}, \"message\": [{\"text\": \"群里大佬有没有运维,安装过freepbx吗?有偿指导\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1417743769, \"group_id\": 132936228, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHPCMS技术交流①群\", \"message_id\": \"B+xyJFSBDZkACRtuGUMAQWLae64B\", \"raw_message\": \"群里大佬有没有运维,安装过freepbx吗?有偿指导\", \"message_type\": \"group\"}','有偿',0,'2022-07-22 10:27:58',NULL),(959,'2022722183821176','{\"seq\": 60809, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2547139123, \"time\": 1658486301, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"male\", \"area\": \"\", \"card\": \"接单-成都-ICP EDI 广播 软著\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3097199009, \"nickname\": \"ICP EDI 网文 广播 软开\"}, \"message\": [{\"text\": \"需要ICP、EDI、广播证等许可证的朋友联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3097199009, \"group_id\": 955416469, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小程序app开发接单群\", \"message_id\": \"OPJ/lbibgaEAAO2Jl9JCM2Lafh0B\", \"raw_message\": \"需要ICP、EDI、广播证等许可证的朋友联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 10:38:21',NULL),(960,'2022722184126171','{\"seq\": 695089, \"atme\": false, \"font\": \"宋体\", \"rand\": 1955040442, \"time\": 1658486486, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2110824941, \"nickname\": \"管管\"}, \"message\": [{\"text\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2110824941, \"group_id\": 875365038, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React/Uniapp/前端开发\", \"message_id\": \"NC0Crn3Qoe0ACpsxdIeMumLaftYB\", \"raw_message\": \"Error: 权限不足,非BOT管理员请用>作为提示符\\n@我获得帮助 输入>功能()获得函数列表\", \"message_type\": \"group\"}','帮助',0,'2022-07-22 10:41:26',NULL),(961,'2022722185322129','{\"seq\": 170288, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1140141829, \"time\": 1658487202, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 29, \"sex\": \"unknown\", \"area\": \"昆明\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2743662612, \"nickname\": \"明月清风\"}, \"message\": [{\"qq\": 1366718626, \"text\": \"@全栈PHP---付费解决编程疑难杂症\", \"type\": \"at\"}], \"self_id\": 1758193468, \"user_id\": 2743662612, \"group_id\": 479865389, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui-3群-开发者交流\", \"message_id\": \"HJoqLaOI+BQAApkwQ/UvBWLagaIB\", \"raw_message\": \"@全栈PHP---付费解决编程疑难杂症\", \"message_type\": \"group\"}','付费',0,'2022-07-22 10:53:22',NULL),(962,'2022722185444177','{\"seq\": 170290, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 981193997, \"time\": 1658487284, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 29, \"sex\": \"unknown\", \"area\": \"昆明\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2743662612, \"nickname\": \"明月清风\"}, \"message\": [{\"qq\": 1366718626, \"text\": \"@全栈PHP---付费解决编程疑难杂症\", \"type\": \"at\"}, {\"text\": \" 怎么获取完整路径啊\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2743662612, \"group_id\": 479865389, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui-3群-开发者交流\", \"message_id\": \"HJoqLaOI+BQAApkyOnvVDWLagfQB\", \"raw_message\": \"@全栈PHP---付费解决编程疑难杂症 怎么获取完整路径啊\", \"message_type\": \"group\"}','付费',0,'2022-07-22 10:54:44',NULL),(963,'202272219535135','{\"seq\": 958360, \"atme\": false, \"font\": \"宋体\", \"rand\": 1423629875, \"time\": 1658487935, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2252660780, \"nickname\": \"My name 先森\"}, \"message\": [{\"text\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的女孩子联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2252660780, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB4ZE4CwADp+YVNreM2LahH8B\", \"raw_message\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的女孩子联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 11:05:35',NULL),(964,'202272219535179','{\"seq\": 958360, \"atme\": false, \"font\": \"宋体\", \"rand\": 1423629875, \"time\": 1658487935, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2252660780, \"nickname\": \"My name 先森\"}, \"message\": [{\"text\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的女孩子联系我\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2252660780, \"group_id\": 977891079, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端开发Vue\", \"message_id\": \"OklvB4ZE4CwADp+YVNreM2LahH8B\", \"raw_message\": \"性格内向!不爱说话 !不懂经营人设 !不会巴结奉承!也不会说违心的话 !只是芸芸众生中最普通的普通人,是下班就回家的男孩子,cpdd,有需要这样的女孩子联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 11:05:35',NULL),(965,'20227221988131','{\"seq\": 175232, \"atme\": false, \"font\": \"汉仪蝶语体简\", \"rand\": 3260146270, \"time\": 1658488088, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"female\", \"area\": \"天津\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2215356327, \"nickname\": \"𝙎𝙪𝙥𝙧𝙚𝙢𝙚\"}, \"message\": [{\"url\": \"https://gchat.qpic.cn/gchatpic_new/2215356327/4185949345-2936147770-D03D4A7D4A341C9A9FC42EC7C3FD47D3/0?term=2\", \"file\": \"d03d4a7d4a341c9a9fc42ec7c3fd47d310195-240-321.jpg\", \"type\": \"image\", \"asface\": false}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2215356327/4185949345-2433920658-1C31C0FF7455AEAEBD95D074558A1E0C/0?term=2\", \"file\": \"1c31c0ff7455aeaebd95d074558a1e0c67957-804-575.jpg\", \"type\": \"image\", \"asface\": false}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2215356327/4185949345-3173588804-7335EC801E2CF216A03B19EF35E7FF83/0?term=2\", \"file\": \"7335ec801e2cf216a03b19ef35e7ff8374639-773-429.jpg\", \"type\": \"image\", \"asface\": false}, {\"url\": \"https://gchat.qpic.cn/gchatpic_new/2215356327/4185949345-2460832087-63CDD6B97054D7F08A89ECCD47F19AA4/0?term=2\", \"file\": \"63cdd6b97054d7f08a89eccd47f19aa451782-651-392.jpg\", \"type\": \"image\", \"asface\": false}, {\"text\": \"\\r兄弟们 拿接口的数据 用递归把它渲染到tree组件上 为啥父节点的名字出来了 子节点的没出来\\r搞出来我下班了 会的加我有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2215356327, \"group_id\": 295949345, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui/vue前后端交流群\", \"message_id\": \"EaPUIYQLp6cAAqyAwlHiXmLahRgB\", \"raw_message\": \"[图片][图片][图片][图片]\\r兄弟们 拿接口的数据 用递归把它渲染到tree组件上 为啥父节点的名字出来了 子节点的没出来\\r搞出来我下班了 会的加我有偿\", \"message_type\": \"group\"}','有偿',0,'2022-07-22 11:08:08',NULL),(966,'2022722191525152','{\"seq\": 170302, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4118249980, \"time\": 1658488525, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 29, \"sex\": \"unknown\", \"area\": \"昆明\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2743662612, \"nickname\": \"明月清风\"}, \"message\": [{\"qq\": 1366718626, \"text\": \"@全栈PHP---付费解决编程疑难杂症\", \"type\": \"at\"}, {\"text\": \" 我这个是自己管理用的,就想要获取选择的文件路径\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2743662612, \"group_id\": 479865389, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"layui-3群-开发者交流\", \"message_id\": \"HJoqLaOI+BQAApk+9XeB/GLahs0B\", \"raw_message\": \"@全栈PHP---付费解决编程疑难杂症 我这个是自己管理用的,就想要获取选择的文件路径\", \"message_type\": \"group\"}','付费',0,'2022-07-22 11:15:25',NULL),(967,'2022722191558172','{\"seq\": 2156, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2886150345, \"time\": 1658488558, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 24, \"sex\": \"female\", \"area\": \"台州\", \"card\": \"A专业解决一切攻击问题\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2944295424, \"nickname\": \"千御\"}, \"message\": [{\"text\": \"防注入,防篡改,防入侵,防渗透等!需要云安全联系我领取免费测试\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2944295424, \"group_id\": 591621349, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"程序员/UI/产品/市场求\", \"message_id\": \"I0Ns5a9+YgAAAAhsrAcoyWLahu4B\", \"raw_message\": \"防注入,防篡改,防入侵,防渗透等!需要云安全联系我领取免费测试\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 11:15:58',NULL),(968,'2022722195742117','{\"seq\": 121995, \"atme\": false, \"font\": \"宋体\", \"rand\": 1817445688, \"time\": 1658491061, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"female\", \"area\": \"\", \"card\": \"rym\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3183740142, \"nickname\": \"安爹嫩爹~\"}, \"message\": [{\"text\": \"你们懂什么,七七大佬花钱了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3183740142, \"group_id\": 236172566, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"✨🐢🚀✨\", \"message_id\": \"DhO1Fr3EBO4AAdyLbFQFOGLakLUB\", \"raw_message\": \"你们懂什么,七七大佬花钱了\", \"message_type\": \"group\"}','花钱',0,'2022-07-22 11:57:42',NULL),(969,'2022722202236157','{\"seq\": 749854, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1975093617, \"time\": 1658492556, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 27, \"sex\": \"male\", \"area\": \"阜新\", \"card\": \"\", \"role\": \"member\", \"level\": 4, \"title\": \"\", \"user_id\": 2767075722, \"nickname\": \"夜行衣\"}, \"message\": [{\"text\": \"前端已经做完了 就差后台了 我现在想找他加点钱 应该加多少 求帮忙估一下\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2767075722, \"group_id\": 718291670, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交\", \"message_id\": \"KtBC1qTuOYoAC3EedbmJcWLalowB\", \"raw_message\": \"前端已经做完了 就差后台了 我现在想找他加点钱 应该加多少 求帮忙估一下\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 12:22:36',NULL),(970,'2022722202525180','{\"seq\": 12794, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3548954675, \"time\": 1658492725, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 29, \"sex\": \"male\", \"area\": \"郑州\", \"card\": \"郑州-金燕惠\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 326030087, \"nickname\": \"金燕惠\"}, \"message\": [{\"text\": \"想实实在在回答就帮忙说下, 不想说就不吭声 😄\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 326030087, \"group_id\": 166398753, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"PHP超高速开发\", \"message_id\": \"CesLIRNu0wcAADH604jAM2LalzUB\", \"raw_message\": \"想实实在在回答就帮忙说下, 不想说就不吭声 😄\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 12:25:25',NULL),(971,'202272220554132','{\"seq\": 1381981, \"atme\": false, \"font\": \"宋体\", \"rand\": 1791592561, \"time\": 1658494504, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"male\", \"area\": \"无锡\", \"card\": \"SKY[交流]林迪\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 805792931, \"nickname\": \"林迪\"}, \"message\": [{\"text\": \"谁接单?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 805792931, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcjAHbKMAFRZdasmIcWLanigB\", \"raw_message\": \"谁接单?\", \"message_type\": \"group\"}','谁接单',0,'2022-07-22 12:55:04',NULL),(972,'2022722212112169','{\"seq\": 67343, \"atme\": false, \"font\": \"宋体\", \"rand\": 1378764540, \"time\": 1658496072, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"法国\", \"card\": \"5年前端。实惠接单\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 2983189575, \"nickname\": \"满心欢喜👄\"}, \"message\": [{\"qq\": 215920014, \"text\": \"@郑州-全栈-花间一壶酒\", \"type\": \"at\"}, {\"text\": \" 多去看下文档,跟你说的很清楚,nvue不能使用样式嵌套。还在这里自以为是。人要低调点。还说有偿,我也是醉了\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 2983189575, \"group_id\": 215693495, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Js,react,Vue前端开发\", \"message_id\": \"DNs4t7HP3EcAAQcPUi5G/GLapEgB\", \"raw_message\": \"@郑州-全栈-花间一壶酒 多去看下文档,跟你说的很清楚,nvue不能使用样式嵌套。还在这里自以为是。人要低调点。还说有偿,我也是醉了\", \"message_type\": \"group\"}','有偿',0,'2022-07-22 13:21:12',NULL),(973,'2022722212419140','{\"seq\": 1382145, \"atme\": false, \"font\": \"宋体\", \"rand\": 2017007444, \"time\": 1658496259, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 25, \"sex\": \"male\", \"area\": \"马鞍山\", \"card\": \"SKY[交流]朕朕\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3281358452, \"nickname\": \"朕\"}, \"message\": [{\"text\": \"花高薪优化代码绝对没有花钱提高服务器划算\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3281358452, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcsOVjnQAFRcBeDkXVGLapQMB\", \"raw_message\": \"花高薪优化代码绝对没有花钱提高服务器划算\", \"message_type\": \"group\"}','花钱',0,'2022-07-22 13:24:19',NULL),(974,'202272221298183','{\"seq\": 67345, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 132884228, \"time\": 1658496548, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"郑州\", \"card\": \"郑州-全栈-花间一壶酒\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 215920014, \"nickname\": \"花间一壶酒90\"}, \"message\": [{\"text\": \"有偿是把问题解决了才有偿, 代码也发你了, 你解决了吗? \", \"type\": \"text\"}, {\"qq\": 2983189575, \"text\": \"@5年前端。实惠接单\", \"type\": \"at\"}], \"self_id\": 1841031740, \"user_id\": 215920014, \"group_id\": 215693495, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Js,react,Vue前端开发\", \"message_id\": \"DNs4twzerY4AAQcRB+unBGLapiQB\", \"raw_message\": \"有偿是把问题解决了才有偿, 代码也发你了, 你解决了吗? @5年前端。实惠接单\", \"message_type\": \"group\"}','有偿',0,'2022-07-22 13:29:08',NULL),(975,'2022722213037155','{\"seq\": 362960, \"atme\": false, \"font\": \"宋体\", \"rand\": 871829184, \"time\": 1658496637, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 21, \"sex\": \"male\", \"area\": \"武汉\", \"card\": \"骚气小奶狗\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1834211049, \"nickname\": \"-\"}, \"message\": [{\"text\": \"女生每天就想着怎么玩怎么花钱\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1834211049, \"group_id\": 976961880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web/react/vue/ts\", \"message_id\": \"OjtBWG1T1ukABYnQM/cOwGLapn0B\", \"raw_message\": \"女生每天就想着怎么玩怎么花钱\", \"message_type\": \"group\"}','花钱',0,'2022-07-22 13:30:37',NULL),(976,'2022722213340116','{\"seq\": 2163, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 4108516719, \"time\": 1658496820, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3378259142, \"nickname\": \"难遇.\"}, \"message\": [{\"text\": \"明天早上9点准时放单 想接单的联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3378259142, \"group_id\": 591621349, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"程序员/UI/产品/市场求\", \"message_id\": \"I0Ns5clcJMYAAAhz9OL9b2LapzQB\", \"raw_message\": \"明天早上9点准时放单 想接单的联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 13:33:40',NULL),(977,'2022722213952159','{\"seq\": 362969, \"atme\": false, \"font\": \"宋体\", \"rand\": 305846304, \"time\": 1658497191, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"serial\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3362820015, \"nickname\": \"星月\"}, \"message\": [{\"id\": 185, \"text\": \"羊驼\", \"type\": \"face\"}, {\"id\": 185, \"text\": \"羊驼\", \"type\": \"face\"}, {\"text\": \"除了吃,好像没什么要花钱的\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 3362820015, \"group_id\": 976961880, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web/react/vue/ts\", \"message_id\": \"OjtBWMhwj68ABYnZEjrYIGLaqKcB\", \"raw_message\": \"[羊驼][羊驼]除了吃,好像没什么要花钱的\", \"message_type\": \"group\"}','花钱',0,'2022-07-22 13:39:52',NULL),(978,'2022722214842121','{\"seq\": 60649, \"atme\": false, \"font\": \"宋体\", \"rand\": 1207813101, \"time\": 1658497722, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 22, \"sex\": \"male\", \"area\": \"毛里求斯\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1154824628, \"nickname\": \"script kid\"}, \"message\": [{\"text\": \"等下我等下QQ给你截图 帮忙看看/无奈\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 1154824628, \"group_id\": 855139333, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"小满 Vue3 pinia \", \"message_id\": \"MvhkBUTVObQAAOzpR/3D7WLaqroB\", \"raw_message\": \"等下我等下QQ给你截图 帮忙看看/无奈\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 13:48:42',NULL),(979,'2022722221057118','{\"seq\": 695184, \"atme\": false, \"font\": \"宋体\", \"rand\": 911623015, \"time\": 1658499057, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"unknown\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 3, \"title\": \"\", \"user_id\": 2635280477, \"nickname\": \"柒\"}, \"message\": [{\"text\": \"货拉拉的仅需用车只是不帮忙搬东西吧\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 2635280477, \"group_id\": 875365038, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Vue/React/Uniapp/前端开发\", \"message_id\": \"NC0Crp0TMF0ACpuQNlZDZ2Lar/EB\", \"raw_message\": \"货拉拉的仅需用车只是不帮忙搬东西吧\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 14:10:57',NULL),(980,'2022722223751167','{\"seq\": 2164, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3736493399, \"time\": 1658500671, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"female\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3378259142, \"nickname\": \"难遇.\"}, \"message\": [{\"text\": \"明天早上9点准时放单 想接单的联系我\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3378259142, \"group_id\": 591621349, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"程序员/UI/产品/市场求\", \"message_id\": \"I0Ns5clcJMYAAAh03rZdV2Latj8B\", \"raw_message\": \"明天早上9点准时放单 想接单的联系我\", \"message_type\": \"group\"}','联系我',0,'2022-07-22 14:37:51',NULL),(981,'202272223151180','{\"seq\": 15122, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 384846035, \"time\": 1658502111, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 35, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 5809985, \"nickname\": \"旭柔网络\"}, \"message\": [{\"text\": \"有vue 前端吗 改点东西 有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 5809985, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaABYp0EAADsSFvBI02Lau98B\", \"raw_message\": \"有vue 前端吗 改点东西 有偿\", \"message_type\": \"group\"}','有偿',0,'2022-07-22 15:01:51',NULL),(982,'202272223151166','{\"seq\": 15122, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 384846035, \"time\": 1658502111, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 35, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 5809985, \"nickname\": \"旭柔网络\"}, \"message\": [{\"text\": \"有vue 前端吗 改点东西 有偿\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 5809985, \"group_id\": 698722664, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"uniapp/vue/elementUI技术交�\", \"message_id\": \"KaWpaABYp0EAADsSFvBI02Lau98B\", \"raw_message\": \"有vue 前端吗 改点东西 有偿\", \"message_type\": \"group\"}','有偿',0,'2022-07-22 15:01:51',NULL),(983,'202272223212161','{\"seq\": 28905, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 2281260182, \"time\": 1658502132, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 35, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 5809985, \"nickname\": \"旭柔网络\"}, \"message\": [{\"text\": \"有vue 前端吗 改点东西 有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 5809985, \"group_id\": 233087398, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"Js,,Vue,react前端外包\", \"message_id\": \"DeShpgBYp0EAAHDph/lElmLau/QB\", \"raw_message\": \"有vue 前端吗 改点东西 有偿\", \"message_type\": \"group\"}','有偿',0,'2022-07-22 15:02:12',NULL),(984,'202272223218142','{\"seq\": 12649, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 3706723697, \"time\": 1658502138, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 35, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 5809985, \"nickname\": \"旭柔网络\"}, \"message\": [{\"text\": \"有vue 前端吗 改点东西 有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 5809985, \"group_id\": 74262192, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端html/js/vue/h5/小程序\", \"message_id\": \"BG0msABYp0EAADFp3PAdcWLau/oB\", \"raw_message\": \"有vue 前端吗 改点东西 有偿\", \"message_type\": \"group\"}','有偿',0,'2022-07-22 15:02:18',NULL),(985,'202272223227103','{\"seq\": 6193, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 239155692, \"time\": 1658502147, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 35, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 5809985, \"nickname\": \"旭柔网络\"}, \"message\": [{\"text\": \"有vue 前端吗 改点东西 有偿\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 5809985, \"group_id\": 732659227, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"react,vue前端交流群\", \"message_id\": \"K6t+GwBYp0EAABgxDkE57GLavAMB\", \"raw_message\": \"有vue 前端吗 改点东西 有偿\", \"message_type\": \"group\"}','有偿',0,'2022-07-22 15:02:27',NULL),(986,'2022722232139107','{\"seq\": 63397, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 243162907, \"time\": 1658503299, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 10, \"sex\": \"male\", \"area\": \"\", \"card\": \"Howie\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 613872296, \"nickname\": \"诗人的脑袋装着那远方\"}, \"message\": [{\"text\": \"你们又付费支持下作者么\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 613872296, \"group_id\": 101539465, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"若依前后端分离\", \"message_id\": \"Bg1eiSSW8qgAAPelDn5fG2LawIMB\", \"raw_message\": \"你们又付费支持下作者么\", \"message_type\": \"group\"}','付费',0,'2022-07-22 15:21:39',NULL),(987,'2022722232216105','{\"seq\": 423031, \"atme\": false, \"font\": \"宋体\", \"rand\": 898047220, \"time\": 1658503336, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 1, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 3344953187, \"nickname\": \"2\"}, \"message\": [{\"text\": \"帮帮忙哥哥姐姐们\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 3344953187, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h68df72MABnR3NYcc9GLawKgB\", \"raw_message\": \"帮帮忙哥哥姐姐们\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 15:22:16',NULL),(988,'20227230211103','{\"seq\": 46700, \"atme\": false, \"font\": \"宋体\", \"rand\": 1688094893, \"time\": 1658506861, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 23, \"sex\": \"male\", \"area\": \"\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 1434348903, \"nickname\": \"七里\"}, \"message\": [{\"text\": \"有没有大佬帮帮忙\", \"type\": \"text\"}], \"self_id\": 1758193468, \"user_id\": 1434348903, \"group_id\": 101526938, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"若依框架交流群\", \"message_id\": \"Bg0tmlV+bWcAALZsZJ5IrWLazm0B\", \"raw_message\": \"有没有大佬帮帮忙\", \"message_type\": \"group\"}','帮忙',0,'2022-07-22 16:21:01',NULL),(989,'202272302557123','{\"seq\": 1382758, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1267864254, \"time\": 1658507156, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"百色\", \"card\": \"SKY[交流]灰色\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 253596304, \"nickname\": \"灰色de梦魇\"}, \"message\": [{\"text\": \"有人用过ELEADMIN 或者能帮解决个问题么 有偿\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 253596304, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcg8dkpAAFRlmS5ISvmLaz5QB\", \"raw_message\": \"有人用过ELEADMIN 或者能帮解决个问题么 有偿\", \"message_type\": \"group\"}','有偿',0,'2022-07-22 16:25:57',NULL),(990,'202272302614125','{\"seq\": 1382762, \"atme\": false, \"font\": \"微软雅黑\", \"rand\": 1055635073, \"time\": 1658507174, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 0, \"sex\": \"male\", \"area\": \"百色\", \"card\": \"SKY[交流]灰色\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 253596304, \"nickname\": \"灰色de梦魇\"}, \"message\": [{\"text\": \"有人用过ELEADMIN 或者能帮解决个问题么 有偿....\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 253596304, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcg8dkpAAFRlqPuu2gWLaz6YB\", \"raw_message\": \"有人用过ELEADMIN 或者能帮解决个问题么 有偿....\", \"message_type\": \"group\"}','有偿',0,'2022-07-22 16:26:14',NULL),(991,'2022723102159','{\"seq\": 1382833, \"atme\": false, \"font\": \"宋体\", \"rand\": 427821324, \"time\": 1658509202, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"male\", \"area\": \"无锡\", \"card\": \"SKY[交流]林迪\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 805792931, \"nickname\": \"林迪\"}, \"message\": [{\"qq\": 2219444584, \"text\": \"@SKY[菠萝]小刺头\", \"type\": \"at\"}, {\"text\": \" 有偿?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 805792931, \"group_id\": 70934898, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"前端/JS/VUE/REACT\", \"message_id\": \"BDphcjAHbKMAFRmxGYAJDGLa15IB\", \"raw_message\": \"@SKY[菠萝]小刺头 有偿?\", \"message_type\": \"group\"}','有偿',0,'2022-07-22 17:00:02',NULL),(992,'2022723136138','{\"seq\": 423724, \"atme\": false, \"font\": \"宋体\", \"rand\": 1093387293, \"time\": 1658509386, \"atall\": false, \"block\": false, \"group\": {}, \"member\": {}, \"sender\": {\"age\": 26, \"sex\": \"male\", \"area\": \"无锡\", \"card\": \"\", \"role\": \"member\", \"level\": 1, \"title\": \"\", \"user_id\": 805792931, \"nickname\": \"林迪\"}, \"source\": {\"seq\": 423720, \"rand\": 1700395793, \"time\": 1658509370, \"message\": \"给了Ul浮动p标签连在后面怎么解决呀\", \"user_id\": 2971437728}, \"message\": [{\"qq\": 2971437728, \"text\": \"@袁滚滚\", \"type\": \"at\"}, {\"text\": \" 有偿?\", \"type\": \"text\"}], \"self_id\": 1841031740, \"user_id\": 805792931, \"group_id\": 599777771, \"sub_type\": \"normal\", \"anonymous\": null, \"post_type\": \"message\", \"group_name\": \"web前端/HTML/React/Vue\", \"message_id\": \"I7/h6zAHbKMABncsQSvEHWLa2EoB\", \"raw_message\": \"@袁滚滚 有偿?\", \"message_type\": \"group\"}','有偿',0,'2022-07-22 17:03:06',NULL); -/*!40000 ALTER TABLE `bus_orders` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `groups` --- - -DROP TABLE IF EXISTS `groups`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!50503 SET character_set_client = utf8mb4 */; -CREATE TABLE `groups` ( - `id` int NOT NULL COMMENT '编号', - `group_id` int DEFAULT NULL COMMENT '群id', - `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '内容json', - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `groups` --- - -LOCK TABLES `groups` WRITE; -/*!40000 ALTER TABLE `groups` DISABLE KEYS */; -/*!40000 ALTER TABLE `groups` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `per_role_menus` --- - -DROP TABLE IF EXISTS `per_role_menus`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!50503 SET character_set_client = utf8mb4 */; -CREATE TABLE `per_role_menus` ( - `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', - `role_id` int NOT NULL COMMENT '角色编号', - `menu_id` int NOT NULL COMMENT '菜单编号', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `per_role_menus` --- - -LOCK TABLES `per_role_menus` WRITE; -/*!40000 ALTER TABLE `per_role_menus` DISABLE KEYS */; -INSERT INTO `per_role_menus` VALUES (1,1,1),(2,1,2),(3,1,3),(4,1,4),(5,1,5),(6,1,6),(7,1,7),(8,1,8),(9,1,9),(10,1,10),(11,1,11),(12,1,12),(13,1,13),(14,2,1),(15,2,2); -/*!40000 ALTER TABLE `per_role_menus` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `per_user_roles` --- - -DROP TABLE IF EXISTS `per_user_roles`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!50503 SET character_set_client = utf8mb4 */; -CREATE TABLE `per_user_roles` ( - `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', - `user_id` int NOT NULL COMMENT '用户编号', - `role_id` int NOT NULL COMMENT '角色编号', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `per_user_roles` --- - -LOCK TABLES `per_user_roles` WRITE; -/*!40000 ALTER TABLE `per_user_roles` DISABLE KEYS */; -INSERT INTO `per_user_roles` VALUES (1,11,1),(2,45,2); -/*!40000 ALTER TABLE `per_user_roles` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_buttons` --- - -DROP TABLE IF EXISTS `sys_buttons`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!50503 SET character_set_client = utf8mb4 */; -CREATE TABLE `sys_buttons` ( - `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', - `button_id` int NOT NULL COMMENT '按钮编号', - `button_name` int NOT NULL COMMENT '按钮名称', - `menu_id` int NOT NULL COMMENT '菜单编号', - PRIMARY KEY (`id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_buttons` --- - -LOCK TABLES `sys_buttons` WRITE; -/*!40000 ALTER TABLE `sys_buttons` DISABLE KEYS */; -/*!40000 ALTER TABLE `sys_buttons` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_dictionaries` --- - -DROP TABLE IF EXISTS `sys_dictionaries`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!50503 SET character_set_client = utf8mb4 */; -CREATE TABLE `sys_dictionaries` ( - `id` int NOT NULL AUTO_INCREMENT COMMENT '编号', - `dic_type_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '字典类型', - `dic_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '字典编号', - `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '字典名称', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_dictionaries` --- - -LOCK TABLES `sys_dictionaries` WRITE; -/*!40000 ALTER TABLE `sys_dictionaries` DISABLE KEYS */; -INSERT INTO `sys_dictionaries` VALUES (1,'gender','1','男'),(2,'gender','2','女'),(3,'keyword','3','有偿'),(4,'keyword','4','付费'),(5,'keyword','4','帮忙'),(6,'keyword','5','花钱'),(7,'keyword','6','掏钱'),(8,'keyword','7','有接单的'),(9,'keyword','8','谁接单'),(10,'keyword','9','人接单'),(11,'keyword','10','解决问题'),(12,'keyword','11','求助'),(13,'keyword','12','帮助'),(14,'keyword','13','帮忙'),(15,'keyword','14','联系我'),(17,'keyword','15','有可以做的技术'); -/*!40000 ALTER TABLE `sys_dictionaries` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_dictionaries_type` --- - -DROP TABLE IF EXISTS `sys_dictionaries_type`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!50503 SET character_set_client = utf8mb4 */; -CREATE TABLE `sys_dictionaries_type` ( - `id` int NOT NULL AUTO_INCREMENT COMMENT '编号', - `dic_type_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '字典类型编码', - `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '字典类型名称', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_dictionaries_type` --- - -LOCK TABLES `sys_dictionaries_type` WRITE; -/*!40000 ALTER TABLE `sys_dictionaries_type` DISABLE KEYS */; -INSERT INTO `sys_dictionaries_type` VALUES (1,'gender','性别'),(2,'keyword','关键字'); -/*!40000 ALTER TABLE `sys_dictionaries_type` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_menus` --- - -DROP TABLE IF EXISTS `sys_menus`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!50503 SET character_set_client = utf8mb4 */; -CREATE TABLE `sys_menus` ( - `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', - `menu_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '菜单编号', - `menu_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '菜单名称', - `path` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '路由', - `menu_type` int NOT NULL COMMENT '菜单类型:0:目录,1:菜单,2:按钮', - `icon` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '图标', - `sort` int NOT NULL COMMENT '排序', - `btns` json DEFAULT NULL COMMENT '按钮', - `pid` int NOT NULL COMMENT '父id', - `link` int NOT NULL COMMENT '是否外链:0:否,1:是', - `enabled` int NOT NULL COMMENT '是否启用:0:启用,1:禁用', - `status` int NOT NULL COMMENT '是否显示:0:显示,1:隐藏', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_menus` --- - -LOCK TABLES `sys_menus` WRITE; -/*!40000 ALTER TABLE `sys_menus` DISABLE KEYS */; -INSERT INTO `sys_menus` VALUES (1,'systemManager','系统管理','/system',0,NULL,1,NULL,0,0,0,0),(2,'userManager','用户管理','user',1,NULL,2,NULL,1,0,0,0),(3,'roleManager','角色管理','role',1,NULL,3,NULL,1,0,0,0),(4,'menuManager','菜单管理','menu',1,NULL,4,NULL,1,0,0,0),(5,'deptManager','部门管理','ept',1,NULL,5,NULL,1,0,0,0),(6,'6dictionaryType','字典分类','dictionaryType\n\n',1,NULL,6,NULL,1,0,0,0),(7,'dictionaryManager','字典管理','dictionary',1,NULL,7,NULL,1,0,0,0),(8,'userAdd','新增',NULL,2,NULL,1,NULL,2,0,0,0),(9,'userDel','删除',NULL,2,NULL,2,NULL,2,0,0,0),(10,'userEdit','编辑',NULL,2,NULL,3,NULL,2,0,0,0),(11,'roleAdd','新增',NULL,2,NULL,1,NULL,3,0,0,0),(12,'roleDel','删除',NULL,2,NULL,2,NULL,3,0,0,0),(13,'roleEdit','编辑',NULL,2,NULL,3,NULL,3,0,0,0); -/*!40000 ALTER TABLE `sys_menus` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_roles` --- - -DROP TABLE IF EXISTS `sys_roles`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!50503 SET character_set_client = utf8mb4 */; -CREATE TABLE `sys_roles` ( - `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', - `role_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '角色编号', - `role_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '角色名称', - PRIMARY KEY (`id`) -) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_roles` --- - -LOCK TABLES `sys_roles` WRITE; -/*!40000 ALTER TABLE `sys_roles` DISABLE KEYS */; -INSERT INTO `sys_roles` VALUES (1,'admin','管理员'),(2,'user','普通用户'),(3,'test','测试专员'); -/*!40000 ALTER TABLE `sys_roles` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `sys_users` --- - -DROP TABLE IF EXISTS `sys_users`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!50503 SET character_set_client = utf8mb4 */; -CREATE TABLE `sys_users` ( - `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', - `user_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户编号', - `user_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户名', - `password` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '密码', - `avatar` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '头像', - `full_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '姓名', - `phone` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '电话', - `email` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '邮箱', - `address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '地址', - `create_time` timestamp NOT NULL COMMENT '创建时间', - `remark` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '备注', - `deleted` int NOT NULL COMMENT '是否删除:0:未删除,1:已删除', - `enabled` int NOT NULL COMMENT '是否启用:0:启用,1:禁用', - PRIMARY KEY (`id`), - UNIQUE KEY `user_name` (`user_name`) -) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='用户表'; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `sys_users` --- - -LOCK TABLES `sys_users` WRITE; -/*!40000 ALTER TABLE `sys_users` DISABLE KEYS */; -INSERT INTO `sys_users` VALUES (11,'YH_1','admin','14e1b600b1fd579f47433b88e8d85291','','管理员','15229380174','quick@163.com','北京朝阳','2022-05-13 08:20:47','管理员账号,请勿删除',0,1),(45,'YH_2','zhanglp','14e1b600b1fd579f47433b88e8d85291',NULL,'张立平',NULL,NULL,NULL,'2022-07-13 21:05:57',NULL,0,0),(49,'YH_01','test1','14e1b600b1fd579f47433b88e8d85291',NULL,NULL,NULL,NULL,NULL,'2022-07-19 01:47:35',NULL,0,0),(50,'YH_02','test2','14e1b600b1fd579f47433b88e8d85291',NULL,NULL,NULL,NULL,NULL,'2022-07-19 01:48:06',NULL,0,0),(51,'YH_03','test3','14e1b600b1fd579f47433b88e8d85291',NULL,NULL,NULL,NULL,NULL,'2022-07-19 01:48:14',NULL,0,0),(52,'YH_04','test4','14e1b600b1fd579f47433b88e8d85291',NULL,NULL,NULL,NULL,NULL,'2022-07-19 01:48:23',NULL,0,0),(53,'YH_05','test5','14e1b600b1fd579f47433b88e8d85291',NULL,NULL,NULL,NULL,NULL,'2022-07-19 01:48:29',NULL,0,0),(54,'YH_06','test6','14e1b600b1fd579f47433b88e8d85291',NULL,NULL,NULL,NULL,NULL,'2022-07-19 01:48:37',NULL,0,0),(55,'YH_07','test7','14e1b600b1fd579f47433b88e8d85291',NULL,NULL,NULL,NULL,NULL,'2022-07-19 01:48:48',NULL,0,0),(56,'YH_08','test8','14e1b600b1fd579f47433b88e8d85291',NULL,NULL,NULL,NULL,NULL,'2022-07-19 01:48:56',NULL,0,0),(57,'YH_09','test9','14e1b600b1fd579f47433b88e8d85291',NULL,NULL,NULL,NULL,NULL,'2022-07-19 01:49:04','111',0,0),(61,'YH_001','zhang123','14e1b600b1fd579f47433b88e8d85291',NULL,'张三',NULL,NULL,NULL,'2022-07-19 09:46:15','',0,0); -/*!40000 ALTER TABLE `sys_users` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Dumping events for database 'order' --- - --- --- Dumping routines for database 'order' --- -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2022-07-29 12:15:35 diff --git a/sql/quick/quick_20220807_202930.sql b/sql/quick/quick_20220807_202930.sql new file mode 100644 index 0000000000000000000000000000000000000000..241d91c33d3a3fb5ce30c81428f762a4f7b841d5 --- /dev/null +++ b/sql/quick/quick_20220807_202930.sql @@ -0,0 +1,314 @@ +-- MySQL dump 10.13 Distrib 8.0.24, for Linux (x86_64) +-- +-- Host: localhost Database: quick +-- ------------------------------------------------------ +-- Server version 8.0.24 + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!50503 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `per_role_menus` +-- + +DROP TABLE IF EXISTS `per_role_menus`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `per_role_menus` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', + `role_id` int NOT NULL COMMENT '角色编号', + `menu_id` int NOT NULL COMMENT '菜单编号', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=219 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `per_role_menus` +-- + +LOCK TABLES `per_role_menus` WRITE; +/*!40000 ALTER TABLE `per_role_menus` DISABLE KEYS */; +INSERT INTO `per_role_menus` VALUES (178,1,2),(179,1,9),(180,1,8),(181,1,10),(182,1,1),(183,1,11),(184,1,3),(185,1,13),(186,1,4),(187,1,5),(188,1,6),(189,1,7),(190,1,24),(191,1,23),(192,1,14),(193,1,25),(194,1,15),(195,1,16),(196,1,26),(197,1,27),(198,1,28),(199,1,29),(200,1,12),(201,2,25),(202,2,2),(203,2,8),(204,2,9),(205,2,6),(206,2,10),(207,2,7),(208,2,5),(209,2,23),(210,2,24),(211,2,26),(212,2,27),(213,2,28),(214,2,29),(215,3,26),(216,3,27),(217,3,28),(218,3,29); +/*!40000 ALTER TABLE `per_role_menus` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `per_user_roles` +-- + +DROP TABLE IF EXISTS `per_user_roles`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `per_user_roles` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', + `user_id` int NOT NULL COMMENT '用户编号', + `role_id` int NOT NULL COMMENT '角色编号', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `per_user_roles` +-- + +LOCK TABLES `per_user_roles` WRITE; +/*!40000 ALTER TABLE `per_user_roles` DISABLE KEYS */; +INSERT INTO `per_user_roles` VALUES (9,11,1),(10,68,2),(11,69,3); +/*!40000 ALTER TABLE `per_user_roles` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_buttons` +-- + +DROP TABLE IF EXISTS `sys_buttons`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_buttons` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', + `button_id` int NOT NULL COMMENT '按钮编号', + `button_name` int NOT NULL COMMENT '按钮名称', + `menu_id` int NOT NULL COMMENT '菜单编号', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_buttons` +-- + +LOCK TABLES `sys_buttons` WRITE; +/*!40000 ALTER TABLE `sys_buttons` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_buttons` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_depts` +-- + +DROP TABLE IF EXISTS `sys_depts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_depts` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', + `dept_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '部门编号', + `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '部门名称', + `p_id` int DEFAULT NULL COMMENT '父级部门id', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_depts` +-- + +LOCK TABLES `sys_depts` WRITE; +/*!40000 ALTER TABLE `sys_depts` DISABLE KEYS */; +INSERT INTO `sys_depts` VALUES (20,'BM_0001','集团',0),(56,'ainiteam','艾尼科技',20),(57,'Sales ','销售部门',56),(58,'development ','开发部',56),(59,'test','测试公司',20); +/*!40000 ALTER TABLE `sys_depts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_dictionaries` +-- + +DROP TABLE IF EXISTS `sys_dictionaries`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_dictionaries` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '编号', + `dic_type_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '字典类型', + `dic_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '字典编号', + `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '字典名称', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_dictionaries` +-- + +LOCK TABLES `sys_dictionaries` WRITE; +/*!40000 ALTER TABLE `sys_dictionaries` DISABLE KEYS */; +INSERT INTO `sys_dictionaries` VALUES (1,'gender','1','男'),(2,'gender','2','女'),(3,'keyword','3','有偿'),(4,'keyword','4','付费'),(5,'keyword','4','帮忙'),(6,'keyword','5','花钱'),(7,'keyword','6','掏钱'),(8,'keyword','7','有接单的'),(9,'keyword','8','谁接单'),(10,'keyword','9','人接单'),(11,'keyword','10','解决问题'),(12,'keyword','11','求助'),(13,'keyword','12','帮助'),(14,'keyword','13','帮忙'),(15,'keyword','14','联系我'),(17,'keyword','15','有可以做的技术'); +/*!40000 ALTER TABLE `sys_dictionaries` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_dictionaries_type` +-- + +DROP TABLE IF EXISTS `sys_dictionaries_type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_dictionaries_type` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '编号', + `dic_type_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '字典类型编码', + `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '字典类型名称', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_dictionaries_type` +-- + +LOCK TABLES `sys_dictionaries_type` WRITE; +/*!40000 ALTER TABLE `sys_dictionaries_type` DISABLE KEYS */; +INSERT INTO `sys_dictionaries_type` VALUES (1,'gender','性别'),(2,'keyword','关键字'); +/*!40000 ALTER TABLE `sys_dictionaries_type` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_logs` +-- + +DROP TABLE IF EXISTS `sys_logs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_logs` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', + `log_time` datetime NOT NULL COMMENT '日志时间', + `operate_api` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '操作接口', + `request_params` json DEFAULT NULL COMMENT '请求参数', + `error_message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '错误信息', + `exception_message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '异常信息', + `log_type` int DEFAULT NULL COMMENT '日志类型:0:操作日志,1:错误日志', + `ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'ip地址', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=1755 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_logs` +-- + +LOCK TABLES `sys_logs` WRITE; +/*!40000 ALTER TABLE `sys_logs` DISABLE KEYS */; +INSERT INTO `sys_logs` VALUES (1276,'2022-08-07 18:58:45','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1277,'2022-08-07 18:58:45','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1278,'2022-08-07 18:58:45','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1279,'2022-08-07 18:58:46','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1280,'2022-08-07 18:58:46','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1281,'2022-08-07 18:58:46','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1282,'2022-08-07 18:58:46','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1283,'2022-08-07 18:58:47','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1284,'2022-08-07 18:58:47','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1285,'2022-08-07 18:58:58','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1286,'2022-08-07 18:58:58','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1287,'2022-08-07 18:58:58','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1288,'2022-08-07 18:58:58','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1289,'2022-08-07 18:58:59','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1290,'2022-08-07 18:58:59','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1291,'2022-08-07 18:58:59','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1292,'2022-08-07 18:58:59','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1293,'2022-08-07 18:58:59','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1294,'2022-08-07 19:42:00','/api/login','{\"body\": {\"tenant\": \"\", \"userName\": \"admin\", \"userPassword\": \"e10adc3949ba59abbe56e057f20f883e\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1295,'2022-08-07 19:42:00','/api/user/getInfo?userName=admin','{\"body\": {}, \"query\": {\"userName\": \"admin\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1296,'2022-08-07 19:42:00','/api/user/getPermission?id=11','{\"body\": {}, \"query\": {\"id\": \"11\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1297,'2022-08-07 19:42:20','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1298,'2022-08-07 19:42:20','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1299,'2022-08-07 19:42:20','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1300,'2022-08-07 19:42:20','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1301,'2022-08-07 19:46:16','/api/login','{\"body\": {\"tenant\": \"\", \"userName\": \"admin\", \"userPassword\": \"e10adc3949ba59abbe56e057f20f883e\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1302,'2022-08-07 19:46:16','/api/user/getInfo?userName=admin','{\"body\": {}, \"query\": {\"userName\": \"admin\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1303,'2022-08-07 19:46:16','/api/user/getPermission?id=11','{\"body\": {}, \"query\": {\"id\": \"11\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1304,'2022-08-07 19:46:20','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1305,'2022-08-07 19:46:20','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1306,'2022-08-07 19:46:22','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1307,'2022-08-07 19:46:54','/api/login','{\"body\": {\"tenant\": \"\", \"userName\": \"admin\", \"userPassword\": \"e10adc3949ba59abbe56e057f20f883e\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1308,'2022-08-07 19:46:54','/api/user/getInfo?userName=admin','{\"body\": {}, \"query\": {\"userName\": \"admin\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1309,'2022-08-07 19:46:54','/api/user/getPermission?id=11','{\"body\": {}, \"query\": {\"id\": \"11\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1310,'2022-08-07 19:46:57','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1311,'2022-08-07 19:46:57','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1312,'2022-08-07 19:46:57','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1313,'2022-08-07 19:48:17','/api/login','{\"body\": {\"tenant\": \"\", \"userName\": \"admin\", \"userPassword\": \"e10adc3949ba59abbe56e057f20f883e\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1314,'2022-08-07 19:48:17','/api/user/getInfo?userName=admin','{\"body\": {}, \"query\": {\"userName\": \"admin\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1315,'2022-08-07 19:48:17','/api/user/getPermission?id=11','{\"body\": {}, \"query\": {\"id\": \"11\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1316,'2022-08-07 19:48:19','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1317,'2022-08-07 19:48:19','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1318,'2022-08-07 19:48:19','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1319,'2022-08-07 19:48:20','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1320,'2022-08-07 19:48:20','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1321,'2022-08-07 19:48:20','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1322,'2022-08-07 19:48:20','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1323,'2022-08-07 19:48:20','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1324,'2022-08-07 19:48:51','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1325,'2022-08-07 19:48:52','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1326,'2022-08-07 19:49:04','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1327,'2022-08-07 19:49:04','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1328,'2022-08-07 19:49:05','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1329,'2022-08-07 19:49:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1330,'2022-08-07 19:49:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1331,'2022-08-07 19:49:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1332,'2022-08-07 19:49:07','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1333,'2022-08-07 19:52:01','/api/role/getList','{\"query\": {}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1334,'2022-08-07 19:52:47','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1335,'2022-08-07 19:52:47','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1336,'2022-08-07 19:52:47','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1337,'2022-08-07 19:52:47','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1338,'2022-08-07 19:52:47','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1339,'2022-08-07 19:53:42','/api/log/getPageList?startTime=&endTime=¤t=1&size=10&logType=0','{\"query\": {\"size\": \"10\", \"current\": \"1\", \"endTime\": \"\", \"logType\": \"0\", \"startTime\": \"\"}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1340,'2022-08-07 19:56:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1341,'2022-08-07 19:56:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1342,'2022-08-07 19:56:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1343,'2022-08-07 19:56:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1344,'2022-08-07 19:56:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1345,'2022-08-07 19:56:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1346,'2022-08-07 20:07:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1347,'2022-08-07 20:07:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1348,'2022-08-07 20:07:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1349,'2022-08-07 20:07:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1350,'2022-08-07 20:07:55','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1351,'2022-08-07 20:07:55','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1352,'2022-08-07 20:10:21','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1353,'2022-08-07 20:10:21','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1354,'2022-08-07 20:10:21','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1355,'2022-08-07 20:10:21','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1356,'2022-08-07 20:10:21','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1357,'2022-08-07 20:10:21','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1358,'2022-08-07 20:10:25','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1359,'2022-08-07 20:10:25','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1360,'2022-08-07 20:10:25','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1361,'2022-08-07 20:10:25','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1362,'2022-08-07 20:10:25','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1363,'2022-08-07 20:10:25','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1364,'2022-08-07 20:10:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1365,'2022-08-07 20:10:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1366,'2022-08-07 20:10:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1367,'2022-08-07 20:10:27','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1368,'2022-08-07 20:10:27','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1369,'2022-08-07 20:10:27','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1370,'2022-08-07 20:10:29','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1371,'2022-08-07 20:10:29','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1372,'2022-08-07 20:10:29','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1373,'2022-08-07 20:10:29','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1374,'2022-08-07 20:10:29','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1375,'2022-08-07 20:10:29','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1376,'2022-08-07 20:10:29','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1377,'2022-08-07 20:10:29','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1378,'2022-08-07 20:11:05','/api/dept/add','{\"body\": {\"id\": \"\", \"pId\": \"20\", \"name\": \"艾尼科技\", \"deptId\": \"ainiteam\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1379,'2022-08-07 20:11:05','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1380,'2022-08-07 20:12:13','/api/dept/add','{\"body\": {\"id\": \"\", \"pId\": \"56\", \"name\": \"销售部门\", \"deptId\": \"Sales \"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1381,'2022-08-07 20:12:13','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1382,'2022-08-07 20:12:36','/api/dept/add','{\"body\": {\"id\": \"\", \"pId\": \"56\", \"name\": \"开发部\", \"deptId\": \"development \"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1383,'2022-08-07 20:12:36','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1384,'2022-08-07 20:12:50','/api/dept/add','{\"body\": {\"id\": \"\", \"pId\": \"20\", \"name\": \"测试公司\", \"deptId\": \"test\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1385,'2022-08-07 20:12:50','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1386,'2022-08-07 20:12:56','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1387,'2022-08-07 20:12:56','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1388,'2022-08-07 20:12:56','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1389,'2022-08-07 20:12:56','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1390,'2022-08-07 20:12:56','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1391,'2022-08-07 20:12:56','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1392,'2022-08-07 20:12:56','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1393,'2022-08-07 20:12:56','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1394,'2022-08-07 20:12:57','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1395,'2022-08-07 20:12:58','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1396,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1397,'2022-08-07 20:12:59','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1398,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1399,'2022-08-07 20:12:59','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1400,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1401,'2022-08-07 20:12:59','/api/dept/add','{\"query\": {}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1402,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1403,'2022-08-07 20:12:59','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1404,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1405,'2022-08-07 20:12:59','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1406,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1407,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1408,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1409,'2022-08-07 20:12:59','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1410,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1411,'2022-08-07 20:12:59','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1412,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1413,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1414,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1415,'2022-08-07 20:12:59','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1416,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1417,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1418,'2022-08-07 20:12:59','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1419,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1420,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1421,'2022-08-07 20:12:59','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1422,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1423,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1424,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1425,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1426,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1427,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1428,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1429,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1430,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1431,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1432,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1433,'2022-08-07 20:13:01','/api/dictionary/getList?dicTypeId=keyword','{\"body\": {}, \"query\": {\"dicTypeId\": \"keyword\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1434,'2022-08-07 20:13:05','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1435,'2022-08-07 20:13:05','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1436,'2022-08-07 20:13:05','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1437,'2022-08-07 20:13:05','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1438,'2022-08-07 20:13:05','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1439,'2022-08-07 20:13:05','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1440,'2022-08-07 20:13:05','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1441,'2022-08-07 20:13:05','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1442,'2022-08-07 20:13:05','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1443,'2022-08-07 20:13:09','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1444,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1445,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1446,'2022-08-07 20:13:09','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1447,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1448,'2022-08-07 20:13:09','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1449,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1450,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1451,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1452,'2022-08-07 20:13:09','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1453,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1454,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1455,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1456,'2022-08-07 20:13:09','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1457,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1458,'2022-08-07 20:13:09','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1459,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1460,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1461,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1462,'2022-08-07 20:13:09','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1463,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1464,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1465,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1466,'2022-08-07 20:13:10','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1467,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1468,'2022-08-07 20:13:10','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1469,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1470,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1471,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1472,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1473,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1474,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1475,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1476,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1477,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1478,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1479,'2022-08-07 20:13:11','/api/dictionary/getList?dicTypeId=keyword','{\"body\": {}, \"query\": {\"dicTypeId\": \"keyword\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1480,'2022-08-07 20:13:16','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1481,'2022-08-07 20:13:16','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1482,'2022-08-07 20:13:16','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1483,'2022-08-07 20:13:16','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1484,'2022-08-07 20:13:16','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1485,'2022-08-07 20:13:16','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1486,'2022-08-07 20:13:17','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1487,'2022-08-07 20:13:17','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1488,'2022-08-07 20:13:17','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1489,'2022-08-07 20:13:24','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1490,'2022-08-07 20:13:25','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1491,'2022-08-07 20:13:25','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1492,'2022-08-07 20:13:25','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1493,'2022-08-07 20:13:25','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1494,'2022-08-07 20:13:25','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1495,'2022-08-07 20:13:25','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1496,'2022-08-07 20:13:25','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1497,'2022-08-07 20:13:25','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1498,'2022-08-07 20:13:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1499,'2022-08-07 20:13:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1500,'2022-08-07 20:13:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1501,'2022-08-07 20:13:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1502,'2022-08-07 20:13:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1503,'2022-08-07 20:13:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1504,'2022-08-07 20:13:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1505,'2022-08-07 20:13:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1506,'2022-08-07 20:13:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1507,'2022-08-07 20:13:27','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1508,'2022-08-07 20:13:27','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1509,'2022-08-07 20:13:27','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1510,'2022-08-07 20:13:27','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1511,'2022-08-07 20:13:28','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1512,'2022-08-07 20:13:28','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1513,'2022-08-07 20:13:28','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1514,'2022-08-07 20:13:28','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1515,'2022-08-07 20:13:28','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1516,'2022-08-07 20:13:29','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1517,'2022-08-07 20:13:29','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1518,'2022-08-07 20:13:29','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1519,'2022-08-07 20:13:29','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1520,'2022-08-07 20:13:29','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1521,'2022-08-07 20:13:29','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1522,'2022-08-07 20:13:29','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1523,'2022-08-07 20:13:29','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1524,'2022-08-07 20:13:29','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1525,'2022-08-07 20:13:38','/api/menu/getList','{\"query\": {}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at runMicrotasks ()\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1526,'2022-08-07 20:13:58','/api/user/add','{\"body\": {\"id\": \"\", \"remark\": \"\", \"userId\": \"YH_002\", \"password\": \"\", \"userName\": \"user\", \"createTime\": \"\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1527,'2022-08-07 20:13:58','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1528,'2022-08-07 20:14:58','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1529,'2022-08-07 20:15:22','/api/user/add','{\"body\": {\"id\": \"\", \"remark\": \"\", \"userId\": \"YH_0003\", \"fullName\": \"测试\", \"password\": \"\", \"userName\": \"test\", \"createTime\": \"\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1530,'2022-08-07 20:15:22','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1531,'2022-08-07 20:15:34','/api/user/update','{\"body\": {\"id\": 68, \"remark\": \"\", \"userId\": \"YH_0002\", \"fullName\": \"用户\", \"password\": \"14e1b600b1fd579f47433b88e8d85291\", \"userName\": \"user\", \"createTime\": \"2022-08-07 20:13:58\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1532,'2022-08-07 20:15:34','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1533,'2022-08-07 20:15:46','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1534,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1535,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1536,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1537,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1538,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1539,'2022-08-07 20:15:46','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1540,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1541,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1542,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1543,'2022-08-07 20:15:46','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1544,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1545,'2022-08-07 20:15:46','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1546,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1547,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1548,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1549,'2022-08-07 20:15:46','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1550,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1551,'2022-08-07 20:15:46','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1552,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1553,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1554,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1555,'2022-08-07 20:15:46','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1556,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1557,'2022-08-07 20:15:46','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1558,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1559,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1560,'2022-08-07 20:15:46','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1561,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1562,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1563,'2022-08-07 20:15:46','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1564,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1565,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1566,'2022-08-07 20:15:47','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1567,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1568,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1569,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1570,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1571,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1572,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1573,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1574,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1575,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1576,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1577,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1578,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1579,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1580,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1581,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1582,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1583,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1584,'2022-08-07 20:15:49','/api/role/getUserPermission?id=2','{\"body\": {}, \"query\": {\"id\": \"2\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1585,'2022-08-07 20:15:49','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1586,'2022-08-07 20:15:54','/api/role/assignUser','{\"body\": {\"roleId\": 2, \"userIds\": \"68\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1587,'2022-08-07 20:15:56','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1588,'2022-08-07 20:15:56','/api/role/getUserPermission?id=3','{\"body\": {}, \"query\": {\"id\": \"3\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1589,'2022-08-07 20:16:40','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1590,'2022-08-07 20:16:40','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1591,'2022-08-07 20:16:41','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1592,'2022-08-07 20:16:41','/api/role/getUserPermission?id=2','{\"body\": {}, \"query\": {\"id\": \"2\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1593,'2022-08-07 20:16:42','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1594,'2022-08-07 20:16:42','/api/role/getUserPermission?id=3','{\"body\": {}, \"query\": {\"id\": \"3\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1595,'2022-08-07 20:16:43','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1596,'2022-08-07 20:16:43','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1597,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1598,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1599,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1600,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1601,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1602,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1603,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1604,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1605,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1606,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1607,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1608,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1609,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1610,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1611,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1612,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1613,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1614,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1615,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1616,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1617,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1618,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1619,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1620,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1621,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1622,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1623,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1624,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1625,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1626,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1627,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1628,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1629,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1630,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1631,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1632,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1633,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1634,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1635,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1636,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1637,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1638,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1639,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1640,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1641,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1642,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1643,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1644,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1645,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1646,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1647,'2022-08-07 20:16:51','/api/role/assignUser','{\"body\": {\"roleId\": 1, \"userIds\": \"11\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1648,'2022-08-07 20:16:52','/api/role/getUserPermission?id=2','{\"body\": {}, \"query\": {\"id\": \"2\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1649,'2022-08-07 20:16:52','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1650,'2022-08-07 20:16:55','/api/role/assignUser','{\"body\": {\"roleId\": 2, \"userIds\": \"68\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1651,'2022-08-07 20:16:56','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1652,'2022-08-07 20:16:56','/api/role/getUserPermission?id=3','{\"body\": {}, \"query\": {\"id\": \"3\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1653,'2022-08-07 20:17:00','/api/role/assignUser','{\"body\": {\"roleId\": 3, \"userIds\": \"69\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1654,'2022-08-07 20:17:01','/api/role/getUserPermission?id=2','{\"body\": {}, \"query\": {\"id\": \"2\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1655,'2022-08-07 20:17:01','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1656,'2022-08-07 20:17:02','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1657,'2022-08-07 20:17:02','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1658,'2022-08-07 20:17:04','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1659,'2022-08-07 20:17:04','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1660,'2022-08-07 20:17:05','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1661,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1662,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1663,'2022-08-07 20:17:05','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1664,'2022-08-07 20:17:05','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1665,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1666,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1667,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1668,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1669,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1670,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1671,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1672,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1673,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1674,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1675,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1676,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1677,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1678,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1679,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1680,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1681,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1682,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1683,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1684,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1685,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1686,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1687,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1688,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1689,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1690,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1691,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1692,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1693,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1694,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1695,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1696,'2022-08-07 20:17:06','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1697,'2022-08-07 20:17:10','/api/role/assignPermission','{\"body\": {\"roleId\": 1, \"menuIds\": \"1,2,8,9,10,3,11,12,13,4,5,6,7,23,24,25,14,15,16,26,27,28,29\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1698,'2022-08-07 20:17:12','/api/role/getMenuPermission?id=2','{\"body\": {}, \"query\": {\"id\": \"2\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1699,'2022-08-07 20:17:42','/api/role/assignPermission','{\"body\": {\"roleId\": 2, \"menuIds\": \"2,8,9,10,5,6,7,23,24,25,26,27,28,29\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1700,'2022-08-07 20:17:43','/api/role/getMenuPermission?id=3','{\"body\": {}, \"query\": {\"id\": \"3\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1701,'2022-08-07 20:17:52','/api/role/assignPermission','{\"body\": {\"roleId\": 3, \"menuIds\": \"26,27,28,29\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1702,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1703,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1704,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1705,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1706,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1707,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1708,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1709,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1710,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1711,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1712,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1713,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1714,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1715,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1716,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1717,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1718,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1719,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1720,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1721,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1722,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1723,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1724,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1725,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1726,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1727,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1728,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1729,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1730,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1731,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1732,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1733,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1734,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1735,'2022-08-07 20:18:01','/api/login','{\"body\": {\"tenant\": \"\", \"userName\": \"admin\", \"userPassword\": \"e10adc3949ba59abbe56e057f20f883e\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1736,'2022-08-07 20:18:01','/api/user/getInfo?userName=admin','{\"body\": {}, \"query\": {\"userName\": \"admin\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1737,'2022-08-07 20:18:01','/api/user/getPermission?id=11','{\"body\": {}, \"query\": {\"id\": \"11\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1738,'2022-08-07 20:18:17','/api/login','{\"body\": {\"tenant\": \"\", \"userName\": \"user\", \"userPassword\": \"e10adc3949ba59abbe56e057f20f883e\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1739,'2022-08-07 20:18:17','/api/user/getInfo?userName=user','{\"body\": {}, \"query\": {\"userName\": \"user\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1740,'2022-08-07 20:18:17','/api/user/getPermission?id=68','{\"body\": {}, \"query\": {\"id\": \"68\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1741,'2022-08-07 20:18:43','/api/login','{\"body\": {\"tenant\": \"\", \"userName\": \"user\", \"userPassword\": \"e10adc3949ba59abbe56e057f20f883e\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1742,'2022-08-07 20:18:43','/api/user/getInfo?userName=user','{\"body\": {}, \"query\": {\"userName\": \"user\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1743,'2022-08-07 20:18:43','/api/user/getPermission?id=68','{\"body\": {}, \"query\": {\"id\": \"68\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1744,'2022-08-07 20:20:05','/api/login','{\"body\": {\"tenant\": \"\", \"userName\": \"test\", \"userPassword\": \"e10adc3949ba59abbe56e057f20f883e\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1745,'2022-08-07 20:20:05','/api/user/getInfo?userName=test','{\"body\": {}, \"query\": {\"userName\": \"test\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1746,'2022-08-07 20:20:05','/api/user/getPermission?id=69','{\"body\": {}, \"query\": {\"id\": \"69\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1747,'2022-08-07 20:21:30','/api/dictionaryType/getList','{\"query\": {}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at runMicrotasks ()\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1748,'2022-08-07 20:21:32','/api/role/assignUser','{\"query\": {}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at runMicrotasks ()\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1749,'2022-08-07 20:21:55','/api/role/assignPermission','{\"query\": {}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at runMicrotasks ()\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1750,'2022-08-07 20:21:56','/api/role/getMenuPermission?id=1','{\"query\": {\"id\": \"1\"}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at runMicrotasks ()\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1751,'2022-08-07 20:22:12','/api/role/getUserPermission?id=2','{\"query\": {\"id\": \"2\"}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at runMicrotasks ()\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1752,'2022-08-07 20:22:27','/api/dept/getList','{\"query\": {}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at runMicrotasks ()\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1753,'2022-08-07 20:22:31','/api/dictionary/getList?dicTypeId=','{\"query\": {\"dicTypeId\": \"\"}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at runMicrotasks ()\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1754,'2022-08-07 20:22:32','/api/user/getList','{\"query\": {}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at runMicrotasks ()\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'); +/*!40000 ALTER TABLE `sys_logs` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_menus` +-- + +DROP TABLE IF EXISTS `sys_menus`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_menus` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', + `menu_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '菜单编号', + `menu_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '菜单名称', + `path` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '路由', + `view_path` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '视图', + `menu_type` int NOT NULL COMMENT '菜单类型:0:目录,1:菜单,2:按钮', + `icon` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '图标', + `sort` int NOT NULL COMMENT '排序', + `btns` json DEFAULT NULL COMMENT '按钮', + `pid` int NOT NULL COMMENT '父id', + `link` int NOT NULL COMMENT '是否外链:0:否,1:是', + `link_url` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '链接地址', + `enabled` int NOT NULL COMMENT '是否启用:0:启用,1:禁用', + `status` int NOT NULL COMMENT '是否显示:0:显示,1:隐藏', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_menus` +-- + +LOCK TABLES `sys_menus` WRITE; +/*!40000 ALTER TABLE `sys_menus` DISABLE KEYS */; +INSERT INTO `sys_menus` VALUES (1,'systemManager','系统管理','/system','',0,'user',1,NULL,0,0,'',0,1),(2,'userManager','用户管理','/system/user','',1,'user-filled',2,NULL,1,0,'',1,1),(3,'roleManager','角色管理','/system/role','',1,'Apple',3,NULL,1,0,'',1,1),(4,'menuManager','菜单管理','/system/menu','',1,'BellFilled',4,NULL,1,0,'',1,1),(5,'deptManager','部门管理','/system/dept','',1,'Bicycle',5,NULL,1,0,'',1,1),(6,'dictionaryType','字典分类','/system/dictionaryType','',1,'Collection',5,NULL,1,0,'',1,1),(7,'dictionaryManager','字典管理','/system/dictionary','',1,'Link',7,NULL,1,0,'',1,1),(8,'userAdd','新增',NULL,'',2,NULL,1,NULL,2,0,'',1,1),(9,'userDel','删除',NULL,'',2,NULL,2,NULL,2,0,'',1,1),(10,'userEdit','编辑',NULL,'',2,NULL,3,NULL,2,0,'',1,1),(11,'roleAdd','新增',NULL,'',2,NULL,1,NULL,3,0,'',1,1),(12,'roleDel','删除',NULL,'',2,NULL,2,NULL,3,0,'',1,1),(13,'roleEdit','编辑',NULL,'',2,NULL,3,NULL,3,0,'',1,1),(14,'permission','权限管理','/permission','',0,'Cloudy',2,NULL,0,0,'',1,1),(15,'assignUser','分配用户','/permission/assignUser','',1,'Filter',1,NULL,14,0,'',1,1),(16,'rolePermission','角色权限','/permission/rolePermission','',1,'CircleCheckFilled',2,NULL,14,0,'',1,1),(23,'logManager','日志管理','/system/log','',0,'Notification',8,NULL,1,0,'',1,1),(24,'operate','操作日志','/system/log/operate','/system/log/operate',1,'Edit',1,NULL,23,0,'',1,1),(25,'error','错误日志','/system/log/error','/system/log/error',1,'Download',2,NULL,23,0,'',1,1),(26,'helper','相关帮助','/helper','',0,'Food',3,NULL,0,0,'',1,1),(27,'document','文档','/helper/document','',1,'IceCream',1,NULL,26,1,'https://element-plus.gitee.io/zh-CN/component/menu.htm',1,1),(28,'gitee','码云','gitee','',1,'Watch',2,NULL,26,1,'https://gitee.com/zhanglp520/quick-vue3-admin',1,1),(29,'apiDocument','接口文档','','',1,'Aim',3,NULL,26,1,'https://console-docs.apipost.cn/preview/0e11a2eb3c3883a7/4fff7a394c074ac7',1,1); +/*!40000 ALTER TABLE `sys_menus` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_roles` +-- + +DROP TABLE IF EXISTS `sys_roles`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_roles` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', + `role_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '角色编号', + `role_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '角色名称', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_roles` +-- + +LOCK TABLES `sys_roles` WRITE; +/*!40000 ALTER TABLE `sys_roles` DISABLE KEYS */; +INSERT INTO `sys_roles` VALUES (1,'admin','管理员'),(2,'user','普通用户'),(3,'test','测试专员'); +/*!40000 ALTER TABLE `sys_roles` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_users` +-- + +DROP TABLE IF EXISTS `sys_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_users` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', + `user_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户编号', + `user_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户名', + `password` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '密码', + `avatar` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '头像', + `full_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '姓名', + `phone` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '电话', + `email` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '邮箱', + `address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '地址', + `create_time` timestamp NOT NULL COMMENT '创建时间', + `remark` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '备注', + `deleted` int NOT NULL COMMENT '是否删除:0:未删除,1:已删除', + `enabled` int NOT NULL COMMENT '是否启用:0:启用,1:禁用', + PRIMARY KEY (`id`), + UNIQUE KEY `user_name` (`user_name`) +) ENGINE=InnoDB AUTO_INCREMENT=70 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='用户表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_users` +-- + +LOCK TABLES `sys_users` WRITE; +/*!40000 ALTER TABLE `sys_users` DISABLE KEYS */; +INSERT INTO `sys_users` VALUES (11,'YH_0001','admin','14e1b600b1fd579f47433b88e8d85291','','管理员','15229380174','quick@163.com','北京朝阳','2022-05-13 08:20:47','管理员账号,请勿删除',0,0),(68,'YH_0002','user','14e1b600b1fd579f47433b88e8d85291',NULL,'用户',NULL,NULL,NULL,'2022-08-07 12:13:58','',0,0),(69,'YH_0003','test','14e1b600b1fd579f47433b88e8d85291',NULL,'测试',NULL,NULL,NULL,'2022-08-07 12:15:22','',0,0); +/*!40000 ALTER TABLE `sys_users` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Dumping events for database 'quick' +-- + +-- +-- Dumping routines for database 'quick' +-- +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2022-08-07 20:29:30 diff --git a/sql/quick/quick_v1.0.0.sql b/sql/quick/quick_v1.0.0.sql new file mode 100644 index 0000000000000000000000000000000000000000..241d91c33d3a3fb5ce30c81428f762a4f7b841d5 --- /dev/null +++ b/sql/quick/quick_v1.0.0.sql @@ -0,0 +1,314 @@ +-- MySQL dump 10.13 Distrib 8.0.24, for Linux (x86_64) +-- +-- Host: localhost Database: quick +-- ------------------------------------------------------ +-- Server version 8.0.24 + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!50503 SET NAMES utf8mb4 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `per_role_menus` +-- + +DROP TABLE IF EXISTS `per_role_menus`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `per_role_menus` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', + `role_id` int NOT NULL COMMENT '角色编号', + `menu_id` int NOT NULL COMMENT '菜单编号', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=219 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `per_role_menus` +-- + +LOCK TABLES `per_role_menus` WRITE; +/*!40000 ALTER TABLE `per_role_menus` DISABLE KEYS */; +INSERT INTO `per_role_menus` VALUES (178,1,2),(179,1,9),(180,1,8),(181,1,10),(182,1,1),(183,1,11),(184,1,3),(185,1,13),(186,1,4),(187,1,5),(188,1,6),(189,1,7),(190,1,24),(191,1,23),(192,1,14),(193,1,25),(194,1,15),(195,1,16),(196,1,26),(197,1,27),(198,1,28),(199,1,29),(200,1,12),(201,2,25),(202,2,2),(203,2,8),(204,2,9),(205,2,6),(206,2,10),(207,2,7),(208,2,5),(209,2,23),(210,2,24),(211,2,26),(212,2,27),(213,2,28),(214,2,29),(215,3,26),(216,3,27),(217,3,28),(218,3,29); +/*!40000 ALTER TABLE `per_role_menus` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `per_user_roles` +-- + +DROP TABLE IF EXISTS `per_user_roles`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `per_user_roles` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', + `user_id` int NOT NULL COMMENT '用户编号', + `role_id` int NOT NULL COMMENT '角色编号', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `per_user_roles` +-- + +LOCK TABLES `per_user_roles` WRITE; +/*!40000 ALTER TABLE `per_user_roles` DISABLE KEYS */; +INSERT INTO `per_user_roles` VALUES (9,11,1),(10,68,2),(11,69,3); +/*!40000 ALTER TABLE `per_user_roles` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_buttons` +-- + +DROP TABLE IF EXISTS `sys_buttons`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_buttons` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', + `button_id` int NOT NULL COMMENT '按钮编号', + `button_name` int NOT NULL COMMENT '按钮名称', + `menu_id` int NOT NULL COMMENT '菜单编号', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_buttons` +-- + +LOCK TABLES `sys_buttons` WRITE; +/*!40000 ALTER TABLE `sys_buttons` DISABLE KEYS */; +/*!40000 ALTER TABLE `sys_buttons` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_depts` +-- + +DROP TABLE IF EXISTS `sys_depts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_depts` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', + `dept_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '部门编号', + `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '部门名称', + `p_id` int DEFAULT NULL COMMENT '父级部门id', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_depts` +-- + +LOCK TABLES `sys_depts` WRITE; +/*!40000 ALTER TABLE `sys_depts` DISABLE KEYS */; +INSERT INTO `sys_depts` VALUES (20,'BM_0001','集团',0),(56,'ainiteam','艾尼科技',20),(57,'Sales ','销售部门',56),(58,'development ','开发部',56),(59,'test','测试公司',20); +/*!40000 ALTER TABLE `sys_depts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_dictionaries` +-- + +DROP TABLE IF EXISTS `sys_dictionaries`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_dictionaries` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '编号', + `dic_type_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '字典类型', + `dic_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '字典编号', + `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '字典名称', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_dictionaries` +-- + +LOCK TABLES `sys_dictionaries` WRITE; +/*!40000 ALTER TABLE `sys_dictionaries` DISABLE KEYS */; +INSERT INTO `sys_dictionaries` VALUES (1,'gender','1','男'),(2,'gender','2','女'),(3,'keyword','3','有偿'),(4,'keyword','4','付费'),(5,'keyword','4','帮忙'),(6,'keyword','5','花钱'),(7,'keyword','6','掏钱'),(8,'keyword','7','有接单的'),(9,'keyword','8','谁接单'),(10,'keyword','9','人接单'),(11,'keyword','10','解决问题'),(12,'keyword','11','求助'),(13,'keyword','12','帮助'),(14,'keyword','13','帮忙'),(15,'keyword','14','联系我'),(17,'keyword','15','有可以做的技术'); +/*!40000 ALTER TABLE `sys_dictionaries` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_dictionaries_type` +-- + +DROP TABLE IF EXISTS `sys_dictionaries_type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_dictionaries_type` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '编号', + `dic_type_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '字典类型编码', + `name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '字典类型名称', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_dictionaries_type` +-- + +LOCK TABLES `sys_dictionaries_type` WRITE; +/*!40000 ALTER TABLE `sys_dictionaries_type` DISABLE KEYS */; +INSERT INTO `sys_dictionaries_type` VALUES (1,'gender','性别'),(2,'keyword','关键字'); +/*!40000 ALTER TABLE `sys_dictionaries_type` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_logs` +-- + +DROP TABLE IF EXISTS `sys_logs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_logs` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', + `log_time` datetime NOT NULL COMMENT '日志时间', + `operate_api` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '操作接口', + `request_params` json DEFAULT NULL COMMENT '请求参数', + `error_message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '错误信息', + `exception_message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '异常信息', + `log_type` int DEFAULT NULL COMMENT '日志类型:0:操作日志,1:错误日志', + `ip` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT 'ip地址', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=1755 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_logs` +-- + +LOCK TABLES `sys_logs` WRITE; +/*!40000 ALTER TABLE `sys_logs` DISABLE KEYS */; +INSERT INTO `sys_logs` VALUES (1276,'2022-08-07 18:58:45','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1277,'2022-08-07 18:58:45','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1278,'2022-08-07 18:58:45','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1279,'2022-08-07 18:58:46','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1280,'2022-08-07 18:58:46','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1281,'2022-08-07 18:58:46','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1282,'2022-08-07 18:58:46','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1283,'2022-08-07 18:58:47','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1284,'2022-08-07 18:58:47','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1285,'2022-08-07 18:58:58','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1286,'2022-08-07 18:58:58','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1287,'2022-08-07 18:58:58','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1288,'2022-08-07 18:58:58','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1289,'2022-08-07 18:58:59','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1290,'2022-08-07 18:58:59','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1291,'2022-08-07 18:58:59','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1292,'2022-08-07 18:58:59','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1293,'2022-08-07 18:58:59','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1294,'2022-08-07 19:42:00','/api/login','{\"body\": {\"tenant\": \"\", \"userName\": \"admin\", \"userPassword\": \"e10adc3949ba59abbe56e057f20f883e\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1295,'2022-08-07 19:42:00','/api/user/getInfo?userName=admin','{\"body\": {}, \"query\": {\"userName\": \"admin\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1296,'2022-08-07 19:42:00','/api/user/getPermission?id=11','{\"body\": {}, \"query\": {\"id\": \"11\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1297,'2022-08-07 19:42:20','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1298,'2022-08-07 19:42:20','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1299,'2022-08-07 19:42:20','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1300,'2022-08-07 19:42:20','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1301,'2022-08-07 19:46:16','/api/login','{\"body\": {\"tenant\": \"\", \"userName\": \"admin\", \"userPassword\": \"e10adc3949ba59abbe56e057f20f883e\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1302,'2022-08-07 19:46:16','/api/user/getInfo?userName=admin','{\"body\": {}, \"query\": {\"userName\": \"admin\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1303,'2022-08-07 19:46:16','/api/user/getPermission?id=11','{\"body\": {}, \"query\": {\"id\": \"11\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1304,'2022-08-07 19:46:20','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1305,'2022-08-07 19:46:20','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1306,'2022-08-07 19:46:22','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1307,'2022-08-07 19:46:54','/api/login','{\"body\": {\"tenant\": \"\", \"userName\": \"admin\", \"userPassword\": \"e10adc3949ba59abbe56e057f20f883e\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1308,'2022-08-07 19:46:54','/api/user/getInfo?userName=admin','{\"body\": {}, \"query\": {\"userName\": \"admin\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1309,'2022-08-07 19:46:54','/api/user/getPermission?id=11','{\"body\": {}, \"query\": {\"id\": \"11\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1310,'2022-08-07 19:46:57','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1311,'2022-08-07 19:46:57','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1312,'2022-08-07 19:46:57','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1313,'2022-08-07 19:48:17','/api/login','{\"body\": {\"tenant\": \"\", \"userName\": \"admin\", \"userPassword\": \"e10adc3949ba59abbe56e057f20f883e\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1314,'2022-08-07 19:48:17','/api/user/getInfo?userName=admin','{\"body\": {}, \"query\": {\"userName\": \"admin\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1315,'2022-08-07 19:48:17','/api/user/getPermission?id=11','{\"body\": {}, \"query\": {\"id\": \"11\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1316,'2022-08-07 19:48:19','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1317,'2022-08-07 19:48:19','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1318,'2022-08-07 19:48:19','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1319,'2022-08-07 19:48:20','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1320,'2022-08-07 19:48:20','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1321,'2022-08-07 19:48:20','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1322,'2022-08-07 19:48:20','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1323,'2022-08-07 19:48:20','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1324,'2022-08-07 19:48:51','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1325,'2022-08-07 19:48:52','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1326,'2022-08-07 19:49:04','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1327,'2022-08-07 19:49:04','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1328,'2022-08-07 19:49:05','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1329,'2022-08-07 19:49:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1330,'2022-08-07 19:49:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1331,'2022-08-07 19:49:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1332,'2022-08-07 19:49:07','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1333,'2022-08-07 19:52:01','/api/role/getList','{\"query\": {}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1334,'2022-08-07 19:52:47','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1335,'2022-08-07 19:52:47','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1336,'2022-08-07 19:52:47','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1337,'2022-08-07 19:52:47','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1338,'2022-08-07 19:52:47','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1339,'2022-08-07 19:53:42','/api/log/getPageList?startTime=&endTime=¤t=1&size=10&logType=0','{\"query\": {\"size\": \"10\", \"current\": \"1\", \"endTime\": \"\", \"logType\": \"0\", \"startTime\": \"\"}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1340,'2022-08-07 19:56:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1341,'2022-08-07 19:56:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1342,'2022-08-07 19:56:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1343,'2022-08-07 19:56:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1344,'2022-08-07 19:56:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1345,'2022-08-07 19:56:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1346,'2022-08-07 20:07:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1347,'2022-08-07 20:07:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1348,'2022-08-07 20:07:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1349,'2022-08-07 20:07:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1350,'2022-08-07 20:07:55','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1351,'2022-08-07 20:07:55','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1352,'2022-08-07 20:10:21','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1353,'2022-08-07 20:10:21','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1354,'2022-08-07 20:10:21','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1355,'2022-08-07 20:10:21','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1356,'2022-08-07 20:10:21','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1357,'2022-08-07 20:10:21','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1358,'2022-08-07 20:10:25','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1359,'2022-08-07 20:10:25','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1360,'2022-08-07 20:10:25','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1361,'2022-08-07 20:10:25','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1362,'2022-08-07 20:10:25','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1363,'2022-08-07 20:10:25','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1364,'2022-08-07 20:10:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1365,'2022-08-07 20:10:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1366,'2022-08-07 20:10:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1367,'2022-08-07 20:10:27','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1368,'2022-08-07 20:10:27','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1369,'2022-08-07 20:10:27','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1370,'2022-08-07 20:10:29','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1371,'2022-08-07 20:10:29','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1372,'2022-08-07 20:10:29','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1373,'2022-08-07 20:10:29','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1374,'2022-08-07 20:10:29','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1375,'2022-08-07 20:10:29','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1376,'2022-08-07 20:10:29','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1377,'2022-08-07 20:10:29','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1378,'2022-08-07 20:11:05','/api/dept/add','{\"body\": {\"id\": \"\", \"pId\": \"20\", \"name\": \"艾尼科技\", \"deptId\": \"ainiteam\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1379,'2022-08-07 20:11:05','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1380,'2022-08-07 20:12:13','/api/dept/add','{\"body\": {\"id\": \"\", \"pId\": \"56\", \"name\": \"销售部门\", \"deptId\": \"Sales \"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1381,'2022-08-07 20:12:13','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1382,'2022-08-07 20:12:36','/api/dept/add','{\"body\": {\"id\": \"\", \"pId\": \"56\", \"name\": \"开发部\", \"deptId\": \"development \"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1383,'2022-08-07 20:12:36','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1384,'2022-08-07 20:12:50','/api/dept/add','{\"body\": {\"id\": \"\", \"pId\": \"20\", \"name\": \"测试公司\", \"deptId\": \"test\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1385,'2022-08-07 20:12:50','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1386,'2022-08-07 20:12:56','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1387,'2022-08-07 20:12:56','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1388,'2022-08-07 20:12:56','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1389,'2022-08-07 20:12:56','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1390,'2022-08-07 20:12:56','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1391,'2022-08-07 20:12:56','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1392,'2022-08-07 20:12:56','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1393,'2022-08-07 20:12:56','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1394,'2022-08-07 20:12:57','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1395,'2022-08-07 20:12:58','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1396,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1397,'2022-08-07 20:12:59','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1398,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1399,'2022-08-07 20:12:59','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1400,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1401,'2022-08-07 20:12:59','/api/dept/add','{\"query\": {}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1402,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1403,'2022-08-07 20:12:59','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1404,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1405,'2022-08-07 20:12:59','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1406,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1407,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1408,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1409,'2022-08-07 20:12:59','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1410,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1411,'2022-08-07 20:12:59','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1412,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1413,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1414,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1415,'2022-08-07 20:12:59','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1416,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1417,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1418,'2022-08-07 20:12:59','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1419,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1420,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1421,'2022-08-07 20:12:59','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1422,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1423,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1424,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1425,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1426,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1427,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1428,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1429,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1430,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1431,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1432,'2022-08-07 20:12:59','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1433,'2022-08-07 20:13:01','/api/dictionary/getList?dicTypeId=keyword','{\"body\": {}, \"query\": {\"dicTypeId\": \"keyword\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1434,'2022-08-07 20:13:05','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1435,'2022-08-07 20:13:05','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1436,'2022-08-07 20:13:05','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1437,'2022-08-07 20:13:05','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1438,'2022-08-07 20:13:05','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1439,'2022-08-07 20:13:05','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1440,'2022-08-07 20:13:05','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1441,'2022-08-07 20:13:05','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1442,'2022-08-07 20:13:05','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1443,'2022-08-07 20:13:09','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1444,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1445,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1446,'2022-08-07 20:13:09','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1447,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1448,'2022-08-07 20:13:09','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1449,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1450,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1451,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1452,'2022-08-07 20:13:09','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1453,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1454,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1455,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1456,'2022-08-07 20:13:09','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1457,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1458,'2022-08-07 20:13:09','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1459,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1460,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1461,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1462,'2022-08-07 20:13:09','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1463,'2022-08-07 20:13:09','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1464,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=','{\"body\": {}, \"query\": {\"dicTypeId\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1465,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1466,'2022-08-07 20:13:10','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1467,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1468,'2022-08-07 20:13:10','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1469,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1470,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1471,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1472,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1473,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1474,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1475,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1476,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1477,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1478,'2022-08-07 20:13:10','/api/dictionary/getList?dicTypeId=gender','{\"body\": {}, \"query\": {\"dicTypeId\": \"gender\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1479,'2022-08-07 20:13:11','/api/dictionary/getList?dicTypeId=keyword','{\"body\": {}, \"query\": {\"dicTypeId\": \"keyword\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1480,'2022-08-07 20:13:16','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1481,'2022-08-07 20:13:16','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1482,'2022-08-07 20:13:16','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1483,'2022-08-07 20:13:16','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1484,'2022-08-07 20:13:16','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1485,'2022-08-07 20:13:16','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1486,'2022-08-07 20:13:17','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1487,'2022-08-07 20:13:17','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1488,'2022-08-07 20:13:17','/api/dictionaryType/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1489,'2022-08-07 20:13:24','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1490,'2022-08-07 20:13:25','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1491,'2022-08-07 20:13:25','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1492,'2022-08-07 20:13:25','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1493,'2022-08-07 20:13:25','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1494,'2022-08-07 20:13:25','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1495,'2022-08-07 20:13:25','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1496,'2022-08-07 20:13:25','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1497,'2022-08-07 20:13:25','/api/dept/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1498,'2022-08-07 20:13:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1499,'2022-08-07 20:13:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1500,'2022-08-07 20:13:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1501,'2022-08-07 20:13:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1502,'2022-08-07 20:13:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1503,'2022-08-07 20:13:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1504,'2022-08-07 20:13:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1505,'2022-08-07 20:13:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1506,'2022-08-07 20:13:26','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1507,'2022-08-07 20:13:27','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1508,'2022-08-07 20:13:27','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1509,'2022-08-07 20:13:27','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1510,'2022-08-07 20:13:27','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1511,'2022-08-07 20:13:28','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1512,'2022-08-07 20:13:28','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1513,'2022-08-07 20:13:28','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1514,'2022-08-07 20:13:28','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1515,'2022-08-07 20:13:28','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1516,'2022-08-07 20:13:29','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1517,'2022-08-07 20:13:29','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1518,'2022-08-07 20:13:29','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1519,'2022-08-07 20:13:29','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1520,'2022-08-07 20:13:29','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1521,'2022-08-07 20:13:29','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1522,'2022-08-07 20:13:29','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1523,'2022-08-07 20:13:29','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1524,'2022-08-07 20:13:29','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1525,'2022-08-07 20:13:38','/api/menu/getList','{\"query\": {}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at runMicrotasks ()\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1526,'2022-08-07 20:13:58','/api/user/add','{\"body\": {\"id\": \"\", \"remark\": \"\", \"userId\": \"YH_002\", \"password\": \"\", \"userName\": \"user\", \"createTime\": \"\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1527,'2022-08-07 20:13:58','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1528,'2022-08-07 20:14:58','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1529,'2022-08-07 20:15:22','/api/user/add','{\"body\": {\"id\": \"\", \"remark\": \"\", \"userId\": \"YH_0003\", \"fullName\": \"测试\", \"password\": \"\", \"userName\": \"test\", \"createTime\": \"\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1530,'2022-08-07 20:15:22','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1531,'2022-08-07 20:15:34','/api/user/update','{\"body\": {\"id\": 68, \"remark\": \"\", \"userId\": \"YH_0002\", \"fullName\": \"用户\", \"password\": \"14e1b600b1fd579f47433b88e8d85291\", \"userName\": \"user\", \"createTime\": \"2022-08-07 20:13:58\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1532,'2022-08-07 20:15:34','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1533,'2022-08-07 20:15:46','/api/user/getPageList?userName=¤t=1&size=10','{\"body\": {}, \"query\": {\"size\": \"10\", \"current\": \"1\", \"userName\": \"\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1534,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1535,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1536,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1537,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1538,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1539,'2022-08-07 20:15:46','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1540,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1541,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1542,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1543,'2022-08-07 20:15:46','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1544,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1545,'2022-08-07 20:15:46','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1546,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1547,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1548,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1549,'2022-08-07 20:15:46','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1550,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1551,'2022-08-07 20:15:46','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1552,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1553,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1554,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1555,'2022-08-07 20:15:46','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1556,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1557,'2022-08-07 20:15:46','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1558,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1559,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1560,'2022-08-07 20:15:46','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1561,'2022-08-07 20:15:46','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1562,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1563,'2022-08-07 20:15:46','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1564,'2022-08-07 20:15:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1565,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1566,'2022-08-07 20:15:47','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1567,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1568,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1569,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1570,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1571,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1572,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1573,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1574,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1575,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1576,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1577,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1578,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1579,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1580,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1581,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1582,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1583,'2022-08-07 20:15:47','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1584,'2022-08-07 20:15:49','/api/role/getUserPermission?id=2','{\"body\": {}, \"query\": {\"id\": \"2\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1585,'2022-08-07 20:15:49','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1586,'2022-08-07 20:15:54','/api/role/assignUser','{\"body\": {\"roleId\": 2, \"userIds\": \"68\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1587,'2022-08-07 20:15:56','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1588,'2022-08-07 20:15:56','/api/role/getUserPermission?id=3','{\"body\": {}, \"query\": {\"id\": \"3\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1589,'2022-08-07 20:16:40','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1590,'2022-08-07 20:16:40','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1591,'2022-08-07 20:16:41','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1592,'2022-08-07 20:16:41','/api/role/getUserPermission?id=2','{\"body\": {}, \"query\": {\"id\": \"2\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1593,'2022-08-07 20:16:42','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1594,'2022-08-07 20:16:42','/api/role/getUserPermission?id=3','{\"body\": {}, \"query\": {\"id\": \"3\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1595,'2022-08-07 20:16:43','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1596,'2022-08-07 20:16:43','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1597,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1598,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1599,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1600,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1601,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1602,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1603,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1604,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1605,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1606,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1607,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1608,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1609,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1610,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1611,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1612,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1613,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1614,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1615,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1616,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1617,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1618,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1619,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1620,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1621,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1622,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1623,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1624,'2022-08-07 20:16:45','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1625,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1626,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1627,'2022-08-07 20:16:45','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1628,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1629,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1630,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1631,'2022-08-07 20:16:45','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1632,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1633,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1634,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1635,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1636,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1637,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1638,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1639,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1640,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1641,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1642,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1643,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1644,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1645,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1646,'2022-08-07 20:16:46','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1647,'2022-08-07 20:16:51','/api/role/assignUser','{\"body\": {\"roleId\": 1, \"userIds\": \"11\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1648,'2022-08-07 20:16:52','/api/role/getUserPermission?id=2','{\"body\": {}, \"query\": {\"id\": \"2\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1649,'2022-08-07 20:16:52','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1650,'2022-08-07 20:16:55','/api/role/assignUser','{\"body\": {\"roleId\": 2, \"userIds\": \"68\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1651,'2022-08-07 20:16:56','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1652,'2022-08-07 20:16:56','/api/role/getUserPermission?id=3','{\"body\": {}, \"query\": {\"id\": \"3\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1653,'2022-08-07 20:17:00','/api/role/assignUser','{\"body\": {\"roleId\": 3, \"userIds\": \"69\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1654,'2022-08-07 20:17:01','/api/role/getUserPermission?id=2','{\"body\": {}, \"query\": {\"id\": \"2\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1655,'2022-08-07 20:17:01','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1656,'2022-08-07 20:17:02','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1657,'2022-08-07 20:17:02','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1658,'2022-08-07 20:17:04','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1659,'2022-08-07 20:17:04','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1660,'2022-08-07 20:17:05','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1661,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1662,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1663,'2022-08-07 20:17:05','/api/role/getUserPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1664,'2022-08-07 20:17:05','/api/user/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1665,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1666,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1667,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1668,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1669,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1670,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1671,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1672,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1673,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1674,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1675,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1676,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1677,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1678,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1679,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1680,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1681,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1682,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1683,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1684,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1685,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1686,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1687,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1688,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1689,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1690,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1691,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1692,'2022-08-07 20:17:05','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1693,'2022-08-07 20:17:05','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1694,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1695,'2022-08-07 20:17:05','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1696,'2022-08-07 20:17:06','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1697,'2022-08-07 20:17:10','/api/role/assignPermission','{\"body\": {\"roleId\": 1, \"menuIds\": \"1,2,8,9,10,3,11,12,13,4,5,6,7,23,24,25,14,15,16,26,27,28,29\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1698,'2022-08-07 20:17:12','/api/role/getMenuPermission?id=2','{\"body\": {}, \"query\": {\"id\": \"2\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1699,'2022-08-07 20:17:42','/api/role/assignPermission','{\"body\": {\"roleId\": 2, \"menuIds\": \"2,8,9,10,5,6,7,23,24,25,26,27,28,29\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1700,'2022-08-07 20:17:43','/api/role/getMenuPermission?id=3','{\"body\": {}, \"query\": {\"id\": \"3\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1701,'2022-08-07 20:17:52','/api/role/assignPermission','{\"body\": {\"roleId\": 3, \"menuIds\": \"26,27,28,29\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1702,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1703,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1704,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1705,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1706,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1707,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1708,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1709,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1710,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1711,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1712,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1713,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1714,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1715,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1716,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1717,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1718,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1719,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1720,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1721,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1722,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1723,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1724,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1725,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1726,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1727,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1728,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1729,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1730,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1731,'2022-08-07 20:17:54','/api/menu/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1732,'2022-08-07 20:17:54','/api/role/getList','{\"body\": {}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1733,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1734,'2022-08-07 20:17:54','/api/role/getMenuPermission?id=1','{\"body\": {}, \"query\": {\"id\": \"1\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1735,'2022-08-07 20:18:01','/api/login','{\"body\": {\"tenant\": \"\", \"userName\": \"admin\", \"userPassword\": \"e10adc3949ba59abbe56e057f20f883e\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1736,'2022-08-07 20:18:01','/api/user/getInfo?userName=admin','{\"body\": {}, \"query\": {\"userName\": \"admin\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1737,'2022-08-07 20:18:01','/api/user/getPermission?id=11','{\"body\": {}, \"query\": {\"id\": \"11\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1738,'2022-08-07 20:18:17','/api/login','{\"body\": {\"tenant\": \"\", \"userName\": \"user\", \"userPassword\": \"e10adc3949ba59abbe56e057f20f883e\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1739,'2022-08-07 20:18:17','/api/user/getInfo?userName=user','{\"body\": {}, \"query\": {\"userName\": \"user\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1740,'2022-08-07 20:18:17','/api/user/getPermission?id=68','{\"body\": {}, \"query\": {\"id\": \"68\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1741,'2022-08-07 20:18:43','/api/login','{\"body\": {\"tenant\": \"\", \"userName\": \"user\", \"userPassword\": \"e10adc3949ba59abbe56e057f20f883e\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1742,'2022-08-07 20:18:43','/api/user/getInfo?userName=user','{\"body\": {}, \"query\": {\"userName\": \"user\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1743,'2022-08-07 20:18:43','/api/user/getPermission?id=68','{\"body\": {}, \"query\": {\"id\": \"68\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1744,'2022-08-07 20:20:05','/api/login','{\"body\": {\"tenant\": \"\", \"userName\": \"test\", \"userPassword\": \"e10adc3949ba59abbe56e057f20f883e\"}, \"query\": {}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1745,'2022-08-07 20:20:05','/api/user/getInfo?userName=test','{\"body\": {}, \"query\": {\"userName\": \"test\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1746,'2022-08-07 20:20:05','/api/user/getPermission?id=69','{\"body\": {}, \"query\": {\"id\": \"69\"}}',NULL,NULL,0,'::ffff:127.0.0.1'),(1747,'2022-08-07 20:21:30','/api/dictionaryType/getList','{\"query\": {}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at runMicrotasks ()\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1748,'2022-08-07 20:21:32','/api/role/assignUser','{\"query\": {}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at runMicrotasks ()\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1749,'2022-08-07 20:21:55','/api/role/assignPermission','{\"query\": {}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at runMicrotasks ()\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1750,'2022-08-07 20:21:56','/api/role/getMenuPermission?id=1','{\"query\": {\"id\": \"1\"}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at runMicrotasks ()\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1751,'2022-08-07 20:22:12','/api/role/getUserPermission?id=2','{\"query\": {\"id\": \"2\"}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at runMicrotasks ()\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1752,'2022-08-07 20:22:27','/api/dept/getList','{\"query\": {}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at runMicrotasks ()\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1753,'2022-08-07 20:22:31','/api/dictionary/getList?dicTypeId=','{\"query\": {\"dicTypeId\": \"\"}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at runMicrotasks ()\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'),(1754,'2022-08-07 20:22:32','/api/user/getList','{\"query\": {}}','No authorization token was found','UnauthorizedError: No authorization token was found\n at new UnauthorizedError (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/errors/UnauthorizedError.js:22:28)\n at /www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:113:39\n at step (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:33:23)\n at Object.next (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:14:53)\n at fulfilled (/www/wwwroot/quickManagerSystem/services/dist/node_modules/express-jwt/dist/index.js:5:58)\n at runMicrotasks ()\n at processTicksAndRejections (node:internal/process/task_queues:96:5)',1,'::ffff:127.0.0.1'); +/*!40000 ALTER TABLE `sys_logs` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_menus` +-- + +DROP TABLE IF EXISTS `sys_menus`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_menus` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', + `menu_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '菜单编号', + `menu_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '菜单名称', + `path` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '路由', + `view_path` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '视图', + `menu_type` int NOT NULL COMMENT '菜单类型:0:目录,1:菜单,2:按钮', + `icon` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '图标', + `sort` int NOT NULL COMMENT '排序', + `btns` json DEFAULT NULL COMMENT '按钮', + `pid` int NOT NULL COMMENT '父id', + `link` int NOT NULL COMMENT '是否外链:0:否,1:是', + `link_url` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '链接地址', + `enabled` int NOT NULL COMMENT '是否启用:0:启用,1:禁用', + `status` int NOT NULL COMMENT '是否显示:0:显示,1:隐藏', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_menus` +-- + +LOCK TABLES `sys_menus` WRITE; +/*!40000 ALTER TABLE `sys_menus` DISABLE KEYS */; +INSERT INTO `sys_menus` VALUES (1,'systemManager','系统管理','/system','',0,'user',1,NULL,0,0,'',0,1),(2,'userManager','用户管理','/system/user','',1,'user-filled',2,NULL,1,0,'',1,1),(3,'roleManager','角色管理','/system/role','',1,'Apple',3,NULL,1,0,'',1,1),(4,'menuManager','菜单管理','/system/menu','',1,'BellFilled',4,NULL,1,0,'',1,1),(5,'deptManager','部门管理','/system/dept','',1,'Bicycle',5,NULL,1,0,'',1,1),(6,'dictionaryType','字典分类','/system/dictionaryType','',1,'Collection',5,NULL,1,0,'',1,1),(7,'dictionaryManager','字典管理','/system/dictionary','',1,'Link',7,NULL,1,0,'',1,1),(8,'userAdd','新增',NULL,'',2,NULL,1,NULL,2,0,'',1,1),(9,'userDel','删除',NULL,'',2,NULL,2,NULL,2,0,'',1,1),(10,'userEdit','编辑',NULL,'',2,NULL,3,NULL,2,0,'',1,1),(11,'roleAdd','新增',NULL,'',2,NULL,1,NULL,3,0,'',1,1),(12,'roleDel','删除',NULL,'',2,NULL,2,NULL,3,0,'',1,1),(13,'roleEdit','编辑',NULL,'',2,NULL,3,NULL,3,0,'',1,1),(14,'permission','权限管理','/permission','',0,'Cloudy',2,NULL,0,0,'',1,1),(15,'assignUser','分配用户','/permission/assignUser','',1,'Filter',1,NULL,14,0,'',1,1),(16,'rolePermission','角色权限','/permission/rolePermission','',1,'CircleCheckFilled',2,NULL,14,0,'',1,1),(23,'logManager','日志管理','/system/log','',0,'Notification',8,NULL,1,0,'',1,1),(24,'operate','操作日志','/system/log/operate','/system/log/operate',1,'Edit',1,NULL,23,0,'',1,1),(25,'error','错误日志','/system/log/error','/system/log/error',1,'Download',2,NULL,23,0,'',1,1),(26,'helper','相关帮助','/helper','',0,'Food',3,NULL,0,0,'',1,1),(27,'document','文档','/helper/document','',1,'IceCream',1,NULL,26,1,'https://element-plus.gitee.io/zh-CN/component/menu.htm',1,1),(28,'gitee','码云','gitee','',1,'Watch',2,NULL,26,1,'https://gitee.com/zhanglp520/quick-vue3-admin',1,1),(29,'apiDocument','接口文档','','',1,'Aim',3,NULL,26,1,'https://console-docs.apipost.cn/preview/0e11a2eb3c3883a7/4fff7a394c074ac7',1,1); +/*!40000 ALTER TABLE `sys_menus` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_roles` +-- + +DROP TABLE IF EXISTS `sys_roles`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_roles` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', + `role_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '角色编号', + `role_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '角色名称', + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_roles` +-- + +LOCK TABLES `sys_roles` WRITE; +/*!40000 ALTER TABLE `sys_roles` DISABLE KEYS */; +INSERT INTO `sys_roles` VALUES (1,'admin','管理员'),(2,'user','普通用户'),(3,'test','测试专员'); +/*!40000 ALTER TABLE `sys_roles` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sys_users` +-- + +DROP TABLE IF EXISTS `sys_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sys_users` ( + `id` int NOT NULL AUTO_INCREMENT COMMENT '主键', + `user_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户编号', + `user_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '用户名', + `password` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '密码', + `avatar` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '头像', + `full_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '姓名', + `phone` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '电话', + `email` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '邮箱', + `address` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '地址', + `create_time` timestamp NOT NULL COMMENT '创建时间', + `remark` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci COMMENT '备注', + `deleted` int NOT NULL COMMENT '是否删除:0:未删除,1:已删除', + `enabled` int NOT NULL COMMENT '是否启用:0:启用,1:禁用', + PRIMARY KEY (`id`), + UNIQUE KEY `user_name` (`user_name`) +) ENGINE=InnoDB AUTO_INCREMENT=70 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='用户表'; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sys_users` +-- + +LOCK TABLES `sys_users` WRITE; +/*!40000 ALTER TABLE `sys_users` DISABLE KEYS */; +INSERT INTO `sys_users` VALUES (11,'YH_0001','admin','14e1b600b1fd579f47433b88e8d85291','','管理员','15229380174','quick@163.com','北京朝阳','2022-05-13 08:20:47','管理员账号,请勿删除',0,0),(68,'YH_0002','user','14e1b600b1fd579f47433b88e8d85291',NULL,'用户',NULL,NULL,NULL,'2022-08-07 12:13:58','',0,0),(69,'YH_0003','test','14e1b600b1fd579f47433b88e8d85291',NULL,'测试',NULL,NULL,NULL,'2022-08-07 12:15:22','',0,0); +/*!40000 ALTER TABLE `sys_users` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Dumping events for database 'quick' +-- + +-- +-- Dumping routines for database 'quick' +-- +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2022-08-07 20:29:30