类图
2015-02-06 13:47:12 95 举报
类图是一种用于描述系统结构和关系的图形表示方法,它展示了系统中各个类及其之间的关系。在类图中,每个类用一个矩形表示,矩形内部包含类的名称、属性和方法。类之间的关系通过连接线表示,常见的关系有继承、实现、关联和依赖等。类图有助于开发人员更好地理解系统的组成部分以及它们之间的交互方式,从而为设计和实现提供指导。
作者其他创作
大纲/内容
Game
+ id+ name+ alias
+ getPlatforms()
UserExtendInfo
+ id+ user_id+ phone ....t
+ getUser()
Project
+ baseinfo+ extendInfo+ functions+ roles
+getBaseInfo()+getExtendInfo()+getRoles()+getFunctions()
Platform
+ id+ game_id+ name
+ getGame()
Function
+id +project+id +name +path
+ getProject()+getParentFunction()+ getChildFuntion()
UserRole
+user_id+platform_id+game_id+project_id+role_id
+getRole()+getProject()+getGame()+getPlatform()+getUser();
UserEntrust
+ id+ user_id+ entruct_user_id
+ getUser()+ getEntrustUser()
User
+ baseInfo+ extendInfo+ entrusts+ userRoles
+ getBaseInfo()+ getExtendInfo()+ getEntrusts()+ getUserRoles()
ProjectExtendInfo
+ id + project_id+ rd
+getProject()
Role
+ id + project_id + name + functions
+ getProject()+ getFunctions()
0 条评论
回复 删除
下一页