refactor(workorder): 优化线索事件状态流查询方法
- 将 getStatusTimeline 方法重命名为 getStatusFlowsByEventId
- 提高方法命名的语义清晰度和一致性
- 保持原有功能逻辑不变
| | |
| | | List<GdClueDisposeRecordVO> disposeRecords = gdClueDisposeRecordService.getDisposeRecordsByEventId(id); |
| | | |
| | | // 3. 查询状态流转时间线 |
| | | List<GdClueEventStatusFlowVO> statusFlows = gdClueEventStatusFlowService.getStatusTimeline(id); |
| | | List<GdClueEventStatusFlowVO> statusFlows = gdClueEventStatusFlowService.getStatusFlowsByEventId(id); |
| | | |
| | | // 4. 组装返回数据 |
| | | GdClueEventDetailVO detailVO = new GdClueEventDetailVO(); |