{"id":23378056,"url":"https://github.com/powerdos/blchat","last_synced_at":"2025-04-10T19:52:17.058Z","repository":{"id":126315708,"uuid":"90371185","full_name":"PowerDos/BLChat","owner":"PowerDos","description":"Android Instant Messaging APP ","archived":false,"fork":false,"pushed_at":"2017-05-22T15:05:33.000Z","size":61718,"stargazers_count":12,"open_issues_count":0,"forks_count":5,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-24T17:51:13.303Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PowerDos.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-05-05T11:59:21.000Z","updated_at":"2023-12-17T22:24:40.000Z","dependencies_parsed_at":"2023-06-16T06:45:45.842Z","dependency_job_id":null,"html_url":"https://github.com/PowerDos/BLChat","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PowerDos%2FBLChat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PowerDos%2FBLChat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PowerDos%2FBLChat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PowerDos%2FBLChat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PowerDos","download_url":"https://codeload.github.com/PowerDos/BLChat/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248283957,"owners_count":21077962,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-21T18:34:24.787Z","updated_at":"2025-04-10T19:52:17.050Z","avatar_url":"https://github.com/PowerDos.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BLChat\n## 简介  \nBLChat即时通讯APP\n\n## SDK版本\nAndroid 4.0.3\n\n## 测试环境\n小米2S、vivo x5pro\n\n## 开发环境\nAndroid Studio 2.3.3\n\n## 文件夹说明\nIMServer 文件夹存放的是服务器接口文件，需要在model文件夹下配置你的数据库账号密码\n\n## 功能模块划分\n1. 用户管理模块\n2. 好友管理模块\n3. 即时通讯模块\n4. 朋友圈模块\n\n## 界面\n### 开始界面\n![启动页面](http://i.imgur.com/jqQ2ZEw.png)\n### 主页面\n![主页面](http://i.imgur.com/8obW0Lv.png)\n![主页面2](http://i.imgur.com/GNOi64s.png)\n## 数据库设计\n### 用户信息列表\n字段名|说明|数据类型|约束\n:----:|:-----:|:-----:|:---:\n_id|索引\t|整形|主码\nuser_id|用户ID|整型|非空\nuser_name|用户名|字符串，长度为30|非空\nuser_sex|性别|字符串，长度为４|非空|\nuser_sign|用户个性签名|字符串，长度为180|\t \nuser_account|用户帐号|字符串，长度为30|非空\nuser_location|用户地区|字符串，长度为36|\t\n\n### 好友信息表\n字段名|说明|数据类型|约束\n:----:|:-----:|:-----:|:---:\n_id\t索引\t整形\t主码\nfriend_id|好友ID\t|整形|非空\ngroup_name|分组名称|字符串，长度为30|非空\nfriend_name|好友名称|字符串，长度为30|非空\nnick_name|昵称|字符串，长度为30|\t \nfriend_sex|好友性别|字符串，长度为4|非空\nfriend_account|好友帐号|字符串，长度为30|非空\nfriend_location|好友地区|字符串，长度为30|\t \nfriend_recent_photo|好友朋友圈展示图片\t|字符串，长度为300|\n\t\n### 聊天记录表\n字段名|说明|数据类型|约束\n:----:|:-----:|:-----:|:---:\n_id|索引|整形|主码\nuser_id|用户ID|整型|外键\nfriend_id|好友ID|整型|外键\nchat_msg_content|聊天内容|文本|非空\nchat_msg_time|聊天时间|日期|非空\nchat_msg_type|聊天类型，接受还是发送|字符串，长度为10|非空\nshow_time_flag|是否显示时间|整型|非空\n\n \n### 添加好友表\n字段名|说明|数据类型|约束\n:----:|:-----:|:-----:|:---:\n_id|索引|整形|主码\naccount|请求者账号|字符串，长度为30|非空\nreason|添加好友的请求信息|字符串，长度为30|默认为“您好”\nstatus|添加好友的状态|字符串，长度为10|非空\n\n### 服务器用户信息列表\n字段名|说明|数据类型|约束\n:----:|:-----:|:-----:|:---:\nid|索引|整形|主码\nusername|用户名|字符串，长度为30|非空\npassword|密码|字符串，长度为32|非空\nnickname|昵称|字符串，长度为18|非空\nsign|用户个性签名\t|字符串，长度为180|无\t \nhead|用户头像|字符串，长度为180|无\nlocation\t|用户地区|字符串，长度为36|无 \t\naddtime|注册时间|DATETIME|非空 \nstatus|用户状态|Int|默认0\t \n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpowerdos%2Fblchat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpowerdos%2Fblchat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpowerdos%2Fblchat/lists"}