System Design (soft dreams factory workers)

system design

This work belongs courses https://edu.cnblogs.com/campus/xnsy/GeographicInformationScience/
Where the job requires https://www.cnblogs.com/harry240/p/11524148.html
Team name C # Software dreams factory
The target job Basic understanding of system design methods, to understand the basic processes of division team
Zhang Xu 201731024123
Zou Yang Feng 201731024134
Huang Tao 201731024119
Zhao Junan 201731024121
Zhoucheng Jie 201731024136
Ma Yan Hao 201731024107
Chen Xin 201731024102
Ma Yunhui 201731024104

1. The present stage of the division of tasks

Zhang Xu, Yang Zou Feng, Huang Tao detailed design
Zhao Junan, Zhoucheng Jie Database Design
Chen Xin, Ma Yunhui, Ma Yan Hao Outline design

II. Summary of design

(A) Software Architecture

graph LR start [golden point Game] -> log [User Login] log -> conditionA [game user input numerical] conditionA -> B (G calculated value) conditionA -> C (G value calculated with each player the difference between the input value) B -> D [stars round score] C -> D [stars round score] D -> E [database entry] E - start the next round of play -> conditionA

(Ii) Main service module description

III. Database Design

(A) conceptual model

Our database designed primarily to store a user's scores, the last call to the database to view the game winner

(Ii) logic model

游戏得分记录表 |列名|数据类型 |约束关系 |注释| |--|--|--|--| | UserName | char | 主键| 用户名| |Point | int | | 用户最终分数 | 用户表 |列名|数据类型 |约束关系 |注释| |--|--|--|--| | UserName | char| 主键| 用户名| |PassWord | int | | 用户密码 | 用户输入表 |列名|数据类型 |约束关系 |注释| |--|--|--|--| | UserName | char | 主键| 用户名| |Num | int | | 用户输入数值 |

四、下阶段详细工作计划及任务分工

  • 下阶段主要是编写代码,以及学习如何实现将每轮结果录入数据库中 具体分工: 邹扬锋、黄涛:代码编写 张旭:项目进度把控、写博客 赵俊安、周成杰:数据库设计 马芸慧、陈欣、马昊妍:UI设计

Guess you like

Origin www.cnblogs.com/shisan9527/p/11666669.html