Welcome to FlowZap, the App to diagram with Speed, Clarity and Control.

数据导出工作流程

business-operations

用户数据导出工作流程,包括导出请求、异步任务处理、数据汇总、安全文件生成以及下载链接发送。

完整 FlowZap 代码

User { # User
  n1: circle label:"Start"
  n2: rectangle label:"Request data export"
  n3: rectangle label:"Verify identity"
  n4: rectangle label:"Download export file"
  n5: circle label:"End"
  n1.handle(right) -> n2.handle(left)
  n2.handle(bottom) -> App.n6.handle(top) [label="Submit request"]
  n3.handle(bottom) -> App.n9.handle(top) [label="Verified"]
  n4.handle(right) -> n5.handle(left)
}
App { # Application
  n6: rectangle label:"Validate request"
  n7: rectangle label:"Send verification email"
  n8: diamond label:"Identity confirmed?"
  n9: rectangle label:"Queue export job"
  n10: rectangle label:"Reject request"
  n6.handle(right) -> n7.handle(left)
  n7.handle(top) -> User.n3.handle(bottom) [label="Check email"]
  n8.handle(right) -> n9.handle(left) [label="Yes"]
  n8.handle(bottom) -> n10.handle(top) [label="No"]
  n9.handle(bottom) -> ExportService.n11.handle(top) [label="Process"]
  n10.handle(top) -> User.n5.handle(bottom) [label="Denied"]
}
ExportService { # Export Service
  n11: rectangle label:"Gather data from all sources"
  n12: rectangle label:"Compile user profile data"
  n13: rectangle label:"Include activity history"
  n14: rectangle label:"Package as ZIP archive"
  n15: diamond label:"File size acceptable?"
  n16: rectangle label:"Split into multiple files"
  n17: rectangle label:"Generate download link"
  n11.handle(right) -> n12.handle(left)
  n12.handle(right) -> n13.handle(left)
  n13.handle(right) -> n14.handle(left)
  n14.handle(right) -> n15.handle(left)
  n15.handle(right) -> n17.handle(left) [label="Yes"]
  n15.handle(bottom) -> n16.handle(top) [label="No"]
  n16.handle(right) -> n17.handle(top)
  n17.handle(top) -> User.n4.handle(bottom) [label="Ready"]
}

相关模板

同意管理工作流

business-operations

用户同意管理工作流,包括 Cookie 弹窗、偏好中心、同意记录、下游系统同步以及审计追踪。

账户删除工作流程

business-operations

账户删除工作流程,包含**取消原因捕获**、**留存优惠**、**订阅终止**、**数据清理**和**确认邮件**。

API 密钥轮换工作流程

business-operations

API 密钥轮换工作流程,包含**新密钥生成**、**双密钥过渡期**、**客户端通知**、**旧密钥弃用**和**审计日志记录**。

队列分析工作流

business-operations

队列分析工作流,包含按注册日期的用户分段、留存曲线计算、LTV预测以及行为模式识别。