forked from jackfrued/Python-100-Days
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
61 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
内部短消息系统(私信系统) | ||
|
||
1 登录 | ||
1.1 发送短消息 | ||
1.2 查看未读消息 | ||
1.2.1 读取消息 | ||
1.2.2 标记已读 | ||
1.2.3 返回上级 | ||
1.3 查看所有消息 | ||
1.3.1 读取消息 | ||
1.3.2 删除消息 | ||
1.3.3 返回上级 | ||
1.4 清除所有消息 | ||
1.5 注销 | ||
2 注册 | ||
2.1 填写信息注册 | ||
2.2 返回上级 | ||
3 退出 | ||
|
||
用户 (用户名, 口令, 最后登录时间) | ||
短消息 (编号, 发送者, 接收者, 标题, 内容, 发送时间, 是否读取, 已删除) | ||
|