uml-diagram-design

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

UML 图表设计

UML Diagram Design

功能说明

Feature Description

此技能专门用于 UML(统一建模语言)图表的设计和绘制,包括:
  • 系统架构设计
  • 类图和对象图
  • 时序图和协作图
  • 用例图和活动图
  • 状态图和部署图
  • 组件图和包图
This skill is dedicated to the design and drawing of UML (Unified Modeling Language) diagrams, including:
  • System architecture design
  • Class diagrams and object diagrams
  • Sequence diagrams and collaboration diagrams
  • Use case diagrams and activity diagrams
  • State diagrams and deployment diagrams
  • Component diagrams and package diagrams

使用场景

Usage Scenarios

  • "设计一个电商系统的类图"
  • "绘制用户登录的时序图"
  • "创建系统架构图"
  • "设计数据库 ER 图"
  • "绘制业务流程图"
  • "创建用例图展示系统功能"
  • "Design a class diagram for an e-commerce system"
  • "Draw a sequence diagram for user login"
  • "Create a system architecture diagram"
  • "Design a database ER diagram"
  • "Draw a business process diagram"
  • "Create a use case diagram to demonstrate system functions"

UML 图表类型

UML Diagram Types

1. 类图(Class Diagram)

1. Class Diagram

用于展示系统中的类、属性、方法及其关系。
plantuml
@startuml
class User {
  - id: Long
  - username: String
  - email: String
  - password: String
  + login(): boolean
  + logout(): void
  + updateProfile(): void
}

class Order {
  - id: Long
  - orderNumber: String
  - totalAmount: Decimal
  - status: OrderStatus
  + create(): void
  + cancel(): void
  + pay(): boolean
}

class Product {
  - id: Long
  - name: String
  - price: Decimal
  - stock: Integer
  + updateStock(quantity: Integer): void
  + getPrice(): Decimal
}

User "1" -- "*" Order : places
Order "*" -- "*" Product : contains
@enduml
关系类型:
  • 关联(Association):实线,表示类之间的关系
  • 聚合(Aggregation):空心菱形,表示整体-部分关系
  • 组合(Composition):实心菱形,表示强整体-部分关系
  • 继承(Inheritance):空心三角箭头,表示is-a关系
  • 实现(Realization):虚线空心三角箭头,表示接口实现
  • 依赖(Dependency):虚线箭头,表示使用关系
Used to display classes, attributes, methods and their relationships in the system.
plantuml
@startuml
class User {
  - id: Long
  - username: String
  - email: String
  - password: String
  + login(): boolean
  + logout(): void
  + updateProfile(): void
}

class Order {
  - id: Long
  - orderNumber: String
  - totalAmount: Decimal
  - status: OrderStatus
  + create(): void
  + cancel(): void
  + pay(): boolean
}

class Product {
  - id: Long
  - name: String
  - price: Decimal
  - stock: Integer
  + updateStock(quantity: Integer): void
  + getPrice(): Decimal
}

User "1" -- "*" Order : places
Order "*" -- "*" Product : contains
@enduml
Relationship Types:
  • Association: Solid line, indicating the relationship between classes
  • Aggregation: Hollow diamond, indicating whole-part relationship
  • Composition: Solid diamond, indicating strong whole-part relationship
  • Inheritance: Hollow triangle arrow, indicating is-a relationship
  • Realization: Dashed hollow triangle arrow, indicating interface implementation
  • Dependency: Dashed arrow, indicating usage relationship

2. 时序图(Sequence Diagram)

2. Sequence Diagram

展示对象之间的交互顺序和消息传递。
plantuml
@startuml
actor User
participant "Web Browser" as Browser
participant "API Server" as API
participant "Database" as DB

User -> Browser: 输入登录信息
Browser -> API: POST /api/login
activate API

API -> DB: 查询用户信息
activate DB
DB --> API: 返回用户数据
deactivate DB

alt 验证成功
    API -> API: 生成 JWT Token
    API --> Browser: 返回 Token
    Browser --> User: 登录成功
else 验证失败
    API --> Browser: 返回错误信息
    Browser --> User: 显示错误提示
end

deactivate API
@enduml
元素说明:
  • Actor:参与者(用户或外部系统)
  • Participant:对象或组件
  • Message:消息传递(同步/异步)
  • Activation:对象激活期间
  • Alt/Opt/Loop:条件、可选、循环
Displays the interaction order and message passing between objects.
plantuml
@startuml
actor User
participant "Web Browser" as Browser
participant "API Server" as API
participant "Database" as DB

User -> Browser: Enter login information
Browser -> API: POST /api/login
activate API

API -> DB: Query user information
activate DB
DB --> API: Return user data
deactivate DB

alt Authentication Success
    API -> API: Generate JWT Token
    API --> Browser: Return Token
    Browser --> User: Login successful
else Authentication Failed
    API --> Browser: Return error message
    Browser --> User: Display error prompt
end

deactivate API
@enduml
Element Explanations:
  • Actor: Participants (users or external systems)
  • Participant: Objects or components
  • Message: Message passing (synchronous/asynchronous)
  • Activation: Object activation period
  • Alt/Opt/Loop: Condition, optional, loop

3. 用例图(Use Case Diagram)

3. Use Case Diagram

展示系统功能和参与者之间的关系。
plantuml
@startuml
left to right direction

actor 用户 as User
actor 管理员 as Admin

rectangle 电商系统 {
  usecase "浏览商品" as UC1
  usecase "搜索商品" as UC2
  usecase "添加到购物车" as UC3
  usecase "下单购买" as UC4
  usecase "支付订单" as UC5
  usecase "管理商品" as UC6
  usecase "查看订单" as UC7
  usecase "处理退款" as UC8
}

User --> UC1
User --> UC2
User --> UC3
User --> UC4
User --> UC5
User --> UC7

Admin --> UC6
Admin --> UC7
Admin --> UC8

UC4 ..> UC3 : <<include>>
UC5 ..> UC4 : <<include>>
@enduml
关系类型:
  • 关联:参与者与用例之间的关系
  • 包含(include):必须执行的用例
  • 扩展(extend):可选执行的用例
  • 泛化:用例之间的继承关系
Displays system functions and relationships between participants.
plantuml
@startuml
left to right direction

actor User as User
actor Admin as Admin

rectangle E-commerce System {
  usecase "Browse Products" as UC1
  usecase "Search Products" as UC2
  usecase "Add to Cart" as UC3
  usecase "Place Order" as UC4
  usecase "Pay Order" as UC5
  usecase "Manage Products" as UC6
  usecase "View Orders" as UC7
  usecase "Process Refunds" as UC8
}

User --> UC1
User --> UC2
User --> UC3
User --> UC4
User --> UC5
User --> UC7

Admin --> UC6
Admin --> UC7
Admin --> UC8

UC4 ..> UC3 : <<include>>
UC5 ..> UC4 : <<include>>
@enduml
Relationship Types:
  • Association: Relationship between participants and use cases
  • Include: Use case that must be executed
  • Extend: Optionally executed use case
  • Generalization: Inheritance relationship between use cases

4. 活动图(Activity Diagram)

4. Activity Diagram

展示业务流程或算法的执行流程。
plantuml
@startuml
start

:用户提交订单;

if (库存充足?) then ()
  :锁定库存;
  :创建订单;

  fork
    :发送确认邮件;
  fork again
    :更新库存;
  fork again
    :记录日志;
  end fork

  :等待支付;

  if (支付成功?) then ()
    :确认订单;
    :安排发货;
  else ()
    :取消订单;
    :释放库存;
  endif

else ()
  :提示库存不足;
endif

stop
@enduml
元素说明:
  • 开始/结束:流程的起点和终点
  • 活动:执行的操作
  • 决策:条件判断
  • 分支/合并:并行执行
  • 泳道:责任划分
Displays the execution flow of business processes or algorithms.
plantuml
@startuml
start

:User submits order;

if (Stock sufficient?) then (Yes)
  :Lock stock;
  :Create order;

  fork
    :Send confirmation email;
  fork again
    :Update stock;
  fork again
    :Record log;
  end fork

  :Wait for payment;

  if (Payment successful?) then (Yes)
    :Confirm order;
    :Arrange shipment;
  else (No)
    :Cancel order;
    :Release stock;
  endif

else (No)
  :Prompt insufficient stock;
endif

stop
@enduml
Element Explanations:
  • Start/End: Start and end points of the process
  • Activity: Operations to be executed
  • Decision: Conditional judgment
  • Branch/Merge: Parallel execution
  • Swimlane: Responsibility division

5. 状态图(State Diagram)

5. State Diagram

展示对象在生命周期中的状态变化。
plantuml
@startuml
[*] --> 待支付 : 创建订单

待支付 --> 已支付 : 支付成功
待支付 --> 已取消 : 超时/用户取消

已支付 --> 配货中 : 开始配货
配货中 --> 已发货 : 发货

已发货 --> 已完成 : 确认收货
已发货 --> 退款中 : 申请退款

退款中 --> 已退款 : 退款成功
退款中 --> 已发货 : 拒绝退款

已完成 --> [*]
已取消 --> [*]
已退款 --> [*]

待支付 : entry / 锁定库存
待支付 : exit / 释放库存
已支付 : entry / 扣减库存
@enduml
Displays state changes of an object during its lifecycle.
plantuml
@startuml
[*] --> Pending Payment : Create order

Pending Payment --> Paid : Payment successful
Pending Payment --> Cancelled : Timeout/User cancels

Paid --> Being Prepared : Start preparation
Being Prepared --> Shipped : Ship

Shipped --> Completed : Confirm receipt
Shipped --> Refunding : Apply for refund

Refunding --> Refunded : Refund successful
Refunding --> Shipped : Reject refund

Completed --> [*]
Cancelled --> [*]
Refunded --> [*]

Pending Payment : entry / Lock stock
Pending Payment : exit / Release stock
Paid : entry / Deduct stock
@enduml

6. 组件图(Component Diagram)

6. Component Diagram

展示系统的组件结构和依赖关系。
plantuml
@startuml
package "前端层" {
  [Web 应用]
  [移动应用]
}

package "API 层" {
  [API Gateway]
  [认证服务]
}

package "业务层" {
  [用户服务]
  [订单服务]
  [商品服务]
  [支付服务]
}

package "数据层" {
  database "MySQL" as DB
  database "Redis" as Cache
  queue "消息队列" as MQ
}

[Web 应用] --> [API Gateway]
[移动应用] --> [API Gateway]

[API Gateway] --> [认证服务]
[API Gateway] --> [用户服务]
[API Gateway] --> [订单服务]
[API Gateway] --> [商品服务]

[订单服务] --> [支付服务]
[订单服务] --> DB
[用户服务] --> DB
[商品服务] --> DB

[用户服务] --> Cache
[商品服务] --> Cache

[订单服务] --> MQ
[支付服务] --> MQ
@enduml
Displays the component structure and dependency relationships of the system.
plantuml
@startuml
package "Frontend Layer" {
  [Web Application]
  [Mobile Application]
}

package "API Layer" {
  [API Gateway]
  [Authentication Service]
}

package "Business Layer" {
  [User Service]
  [Order Service]
  [Product Service]
  [Payment Service]
}

package "Data Layer" {
  database "MySQL" as DB
  database "Redis" as Cache
  queue "Message Queue" as MQ
}

[Web Application] --> [API Gateway]
[Mobile Application] --> [API Gateway]

[API Gateway] --> [Authentication Service]
[API Gateway] --> [User Service]
[API Gateway] --> [Order Service]
[API Gateway] --> [Product Service]

[Order Service] --> [Payment Service]
[Order Service] --> DB
[User Service] --> DB
[Product Service] --> DB

[User Service] --> Cache
[Product Service] --> Cache

[Order Service] --> MQ
[Payment Service] --> MQ
@enduml

7. 部署图(Deployment Diagram)

7. Deployment Diagram

展示系统的物理部署架构。
plantuml
@startuml
node "用户设备" {
  [浏览器]
  [移动 App]
}

node "负载均衡器" {
  [Nginx]
}

node "应用服务器集群" {
  node "服务器 1" {
    [Node.js 实例 1]
  }
  node "服务器 2" {
    [Node.js 实例 2]
  }
}

node "数据库服务器" {
  database "MySQL 主库"
  database "MySQL 从库"
}

node "缓存服务器" {
  database "Redis 集群"
}

node "文件存储" {
  [OSS/S3]
}

[浏览器] --> [Nginx]
[移动 App] --> [Nginx]
[Nginx] --> [Node.js 实例 1]
[Nginx] --> [Node.js 实例 2]

[Node.js 实例 1] --> [MySQL 主库]
[Node.js 实例 2] --> [MySQL 主库]
[MySQL 主库] --> [MySQL 从库] : 主从复制

[Node.js 实例 1] --> [Redis 集群]
[Node.js 实例 2] --> [Redis 集群]

[Node.js 实例 1] --> [OSS/S3]
[Node.js 实例 2] --> [OSS/S3]
@enduml
Displays the physical deployment architecture of the system.
plantuml
@startuml
node "User Devices" {
  [Browser]
  [Mobile App]
}

node "Load Balancer" {
  [Nginx]
}

node "Application Server Cluster" {
  node "Server 1" {
    [Node.js Instance 1]
  }
  node "Server 2" {
    [Node.js Instance 2]
  }
}

node "Database Server" {
  database "MySQL Primary"
  database "MySQL Replica"
}

node "Cache Server" {
  database "Redis Cluster"
}

node "File Storage" {
  [OSS/S3]
}

[Browser] --> [Nginx]
[Mobile App] --> [Nginx]
[Nginx] --> [Node.js Instance 1]
[Nginx] --> [Node.js Instance 2]

[Node.js Instance 1] --> [MySQL Primary]
[Node.js Instance 2] --> [MySQL Primary]
[MySQL Primary] --> [MySQL Replica] : Master-slave replication

[Node.js Instance 1] --> [Redis Cluster]
[Node.js Instance 2] --> [Redis Cluster]

[Node.js Instance 1] --> [OSS/S3]
[Node.js Instance 2] --> [OSS/S3]
@enduml

绘图工具

Diagramming Tools

PlantUML

PlantUML

最流行的文本驱动 UML 工具。
安装:
bash
undefined
The most popular text-driven UML tool.
Installation:
bash
undefined

使用 npm

Using npm

npm install -g node-plantuml
npm install -g node-plantuml

使用 Java

Using Java

下载 plantuml.jar

Download plantuml.jar

java -jar plantuml.jar diagram.puml

**在线工具**:
- PlantUML Online Server
- PlantText
- PlantUML QEditor
java -jar plantuml.jar diagram.puml

**Online Tools**:
- PlantUML Online Server
- PlantText
- PlantUML QEditor

Mermaid

Mermaid

Markdown 友好的图表工具。
mermaid
classDiagram
    class User {
        +String username
        +String email
        +login()
        +logout()
    }

    class Order {
        +String orderNumber
        +Decimal amount
        +create()
        +cancel()
    }

    User "1" --> "*" Order : places
Markdown-friendly diagram tool.
mermaid
classDiagram
    class User {
        +String username
        +String email
        +login()
        +logout()
    }

    class Order {
        +String orderNumber
        +Decimal amount
        +create()
        +cancel()
    }

    User "1" --> "*" Order : places

其他工具

Other Tools

  • Draw.io/diagrams.net:在线图表工具
  • Lucidchart:专业图表软件
  • Visual Paradigm:企业级建模工具
  • StarUML:开源 UML 工具
  • Draw.io/diagrams.net: Online diagram tool
  • Lucidchart: Professional diagram software
  • Visual Paradigm: Enterprise-level modeling tool
  • StarUML: Open-source UML tool

设计最佳实践

Design Best Practices

1. 类图设计

1. Class Diagram Design

markdown
✓ 遵循单一职责原则
✓ 使用清晰的命名
✓ 标注关键属性和方法
✓ 显示重要的关系
✓ 使用包组织大型系统

✗ 避免过度设计
✗ 不要包含所有细节
✗ 避免循环依赖
markdown
✓ Follow the Single Responsibility Principle
✓ Use clear naming
✓ Mark key attributes and methods
✓ Display important relationships
✓ Use packages to organize large systems

✗ Avoid over-engineering
✗ Do not include all details
✗ Avoid circular dependencies

2. 时序图设计

2. Sequence Diagram Design

markdown
✓ 从左到右排列参与者
✓ 按时间顺序排列消息
✓ 使用清晰的消息名称
✓ 标注重要的条件和循环
✓ 保持图表简洁

✗ 避免过多的参与者
✗ 不要遗漏返回消息
✗ 避免交叉的消息线
markdown
✓ Arrange participants from left to right
✓ Arrange messages in chronological order
✓ Use clear message names
✓ Mark important conditions and loops
✓ Keep diagrams concise

✗ Avoid too many participants
✗ Do not omit return messages
✗ Avoid crossing message lines

3. 用例图设计

3. Use Case Diagram Design

markdown
✓ 使用用户视角描述功能
✓ 保持用例粒度适中
✓ 明确参与者角色
✓ 标注关键的关系
✓ 按功能模块组织

✗ 避免技术术语
✗ 不要过于细化
✗ 避免遗漏重要用例
markdown
✓ Describe functions from the user's perspective
✓ Keep use case granularity appropriate
✓ Clarify participant roles
✓ Mark key relationships
✗ Avoid technical jargon
✗ Do not over-refine
✗ Avoid missing important use cases

实际应用场景

Practical Application Scenarios

电商系统设计

E-commerce System Design

plantuml
@startuml
' 核心领域模型

class User {
  - id: Long
  - username: String
  - email: String
  - phone: String
  + register()
  + login()
  + updateProfile()
}

class Product {
  - id: Long
  - name: String
  - description: String
  - price: Decimal
  - stock: Integer
  + updateStock()
  + getPrice()
}

class Order {
  - id: Long
  - orderNumber: String
  - totalAmount: Decimal
  - status: OrderStatus
  - createdAt: DateTime
  + create()
  + cancel()
  + pay()
  + ship()
}

class OrderItem {
  - id: Long
  - quantity: Integer
  - price: Decimal
  + calculateSubtotal()
}

class Payment {
  - id: Long
  - amount: Decimal
  - method: PaymentMethod
  - status: PaymentStatus
  + process()
  + refund()
}

class Address {
  - id: Long
  - province: String
  - city: String
  - detail: String
  - phone: String
}

enum OrderStatus {
  PENDING
  PAID
  SHIPPED
  COMPLETED
  CANCELLED
}

enum PaymentMethod {
  ALIPAY
  WECHAT
  CREDIT_CARD
}

User "1" -- "*" Order : places
User "1" -- "*" Address : has
Order "1" *-- "*" OrderItem : contains
OrderItem "*" -- "1" Product : references
Order "1" -- "1" Payment : pays with
Order "1" -- "1" Address : ships to
@enduml
plantuml
@startuml
' Core domain model

class User {
  - id: Long
  - username: String
  - email: String
  - phone: String
  + register()
  + login()
  + updateProfile()
}

class Product {
  - id: Long
  - name: String
  - description: String
  - price: Decimal
  - stock: Integer
  + updateStock()
  + getPrice()
}

class Order {
  - id: Long
  - orderNumber: String
  - totalAmount: Decimal
  - status: OrderStatus
  - createdAt: DateTime
  + create()
  + cancel()
  + pay()
  + ship()
}

class OrderItem {
  - id: Long
  - quantity: Integer
  - price: Decimal
  + calculateSubtotal()
}

class Payment {
  - id: Long
  - amount: Decimal
  - method: PaymentMethod
  - status: PaymentStatus
  + process()
  + refund()
}

class Address {
  - id: Long
  - province: String
  - city: String
  - detail: String
  - phone: String
}

enum OrderStatus {
  PENDING
  PAID
  SHIPPED
  COMPLETED
  CANCELLED
}

enum PaymentMethod {
  ALIPAY
  WECHAT
  CREDIT_CARD
}

User "1" -- "*" Order : places
User "1" -- "*" Address : has
Order "1" *-- "*" OrderItem : contains
OrderItem "*" -- "1" Product : references
Order "1" -- "1" Payment : pays with
Order "1" -- "1" Address : ships to
@enduml

微服务架构图

Microservices Architecture Diagram

plantuml
@startuml
!define RECTANGLE class

package "客户端" {
  [Web 前端]
  [移动 App]
}

package "API 网关层" {
  [API Gateway]
  [认证中心]
}

package "微服务层" {
  RECTANGLE "用户服务" {
    [用户管理]
    [权限管理]
  }

  RECTANGLE "商品服务" {
    [商品管理]
    [库存管理]
  }

  RECTANGLE "订单服务" {
    [订单管理]
    [订单状态]
  }

  RECTANGLE "支付服务" {
    [支付处理]
    [退款处理]
  }
}

package "基础设施层" {
  database "MySQL 集群"
  database "Redis 集群"
  queue "Kafka"
  [配置中心]
  [服务注册]
}

[Web 前端] --> [API Gateway]
[移动 App] --> [API Gateway]

[API Gateway] --> [认证中心]
[API Gateway] --> [用户管理]
[API Gateway] --> [商品管理]
[API Gateway] --> [订单管理]

[订单管理] --> [支付处理]
[订单管理] --> [库存管理]

[用户管理] --> [MySQL 集群]
[商品管理] --> [MySQL 集群]
[订单管理] --> [MySQL 集群]

[用户管理] --> [Redis 集群]
[商品管理] --> [Redis 集群]

[订单管理] --> [Kafka]
[支付处理] --> [Kafka]

[用户管理] --> [配置中心]
[商品管理] --> [配置中心]
[订单管理] --> [配置中心]

[用户管理] --> [服务注册]
[商品管理] --> [服务注册]
[订单管理] --> [服务注册]
@enduml
plantuml
@startuml
!define RECTANGLE class

package "Client" {
  [Web Frontend]
  [Mobile App]
}

package "API Gateway Layer" {
  [API Gateway]
  [Authentication Center]
}

package "Microservices Layer" {
  RECTANGLE "User Service" {
    [User Management]
    [Permission Management]
  }

  RECTANGLE "Product Service" {
    [Product Management]
    [Inventory Management]
  }

  RECTANGLE "Order Service" {
    [Order Management]
    [Order Status]
  }

  RECTANGLE "Payment Service" {
    [Payment Processing]
    [Refund Processing]
  }
}

package "Infrastructure Layer" {
  database "MySQL Cluster"
  database "Redis Cluster"
  queue "Kafka"
  [Configuration Center]
  [Service Registry]
}

[Web Frontend] --> [API Gateway]
[Mobile App] --> [API Gateway]

[API Gateway] --> [Authentication Center]
[API Gateway] --> [User Management]
[API Gateway] --> [Product Management]
[API Gateway] --> [Order Management]

[Order Management] --> [Payment Processing]
[Order Management] --> [Inventory Management]

[User Management] --> [MySQL Cluster]
[Product Management] --> [MySQL Cluster]
[Order Management] --> [MySQL Cluster]

[User Management] --> [Redis Cluster]
[Product Management] --> [Redis Cluster]

[Order Management] --> [Kafka]
[Payment Processing] --> [Kafka]

[User Management] --> [Configuration Center]
[Product Management] --> [Configuration Center]
[Order Management] --> [Configuration Center]

[User Management] --> [Service Registry]
[Product Management] --> [Service Registry]
[Order Management] --> [Service Registry]
@enduml

文档集成

Document Integration

Markdown 中嵌入

Embed in Markdown

markdown
undefined
markdown
undefined

系统设计文档

System Design Document

类图

Class Diagram

```plantuml @startuml class User { +login() } @enduml ```
```plantuml @startuml class User { +login() } @enduml ```

时序图

Sequence Diagram

```mermaid sequenceDiagram User->>API: 请求 API->>DB: 查询 DB-->>API: 返回 API-->>User: 响应 ```
undefined
```mermaid sequenceDiagram User->>API: Request API->>DB: Query DB-->>API: Return API-->>User: Response ```
undefined

代码注释中使用

Use in Code Comments

java
/**
 * 用户服务类
 *
 * @startuml
 * class UserService {
 *   +register(user: User): boolean
 *   +login(username: String, password: String): Token
 * }
 * @enduml
 */
public class UserService {
    // 实现代码
}
java
/**
 * User Service Class
 *
 * @startuml
 * class UserService {
 *   +register(user: User): boolean
 *   +login(username: String, password: String): Token
 * }
 * @enduml
 */
public class UserService {
    // Implementation code
}

注意事项

Notes

  • 选择合适的图表类型
  • 保持图表简洁清晰
  • 使用一致的命名规范
  • 及时更新文档
  • 考虑图表的可读性
  • 避免过度设计
  • 使用版本控制管理图表文件
  • 与团队保持沟通
  • Choose the appropriate diagram type
  • Keep diagrams concise and clear
  • Use consistent naming conventions
  • Update documents in a timely manner
  • Consider diagram readability
  • Avoid over-engineering
  • Use version control to manage diagram files
  • Maintain communication with the team