用户使用流程图 — 天盘与运势
flowchart TD
%% ============ 颜色定义 ============
classDef actor fill:#e1f5fe,stroke:#0288d1,stroke-width:2px
classDef action fill:#fff3e0,stroke:#f57c00,stroke-width:1px
classDef system fill:#e8f5e9,stroke:#388e3c,stroke-width:1px
classDef decision fill:#fce4ec,stroke:#d32f2f,stroke-width:1px
classDef role fill:#f3e5f5,stroke:#7b1fa2,stroke-width:1px
classDef endpoint fill:#f5f5f5,stroke:#616161,stroke-width:1px,shape:box
subgraph 天盘首页
A1(("用户")) --> A2[获取天盘首页 /dashboard]
A2 --> A3[查看成员天盘 /member/{memberId}]
end
subgraph 天盘分析
A3 --> B1[查看成员兼容性 /compatibility]
B1 --> B2[获取年度能量 /annual-energy]
B2 --> B3[获取每日运势 /daily-fortune]
B3 --> B4[获取相关项目 /related-items]
end
R1(("👤 用户")):::actor
A1 -.- R1
端点明细
| 端点 |
说明 |
/api/tianpan/dashboard |
天盘首页 |
/api/tianpan/member/{memberId} |
成员天盘 |
/api/tianpan/compatibility |
成员兼容性 |
/api/tianpan/annual-energy |
年度能量 |
/api/tianpan/daily-fortune |
每日运势 |
/api/tianpan/related-items |
相关项目 |