导出Excel时序图.puml 752 B

1234567891011121314151617181920
  1. @startuml
  2. 'https://plantuml.com/sequence-diagram
  3. /'autonumber'/
  4. actor Actor as user
  5. user -> 点击导入
  6. 点击导入 -> 打开附件选择框
  7. 打开附件选择框 -> 打开附件选择框: 选择文件
  8. 打开附件选择框 -> GoalIeController : 通过callAjaxRequest发起导入请求
  9. GoalIeController -> GoalIeController : 解析Excel
  10. GoalIeController -> GoalIeService : 请求保存数据
  11. GoalIeService -> GoalIeService: 根据excel数据分离需要修改的数据及需要新增的数据
  12. GoalIeService -> GoalIeDao: 更新、添加数据
  13. GoalIeDao -> GoalIeService: 保存成功
  14. GoalIeService -> GoalIeController : 保存成功
  15. GoalIeController -> 打开附件选择框 : 导入成功
  16. 打开附件选择框 -> user: 弹窗导入成功
  17. @enduml