docs(test): 更新电表箱装配业务回归测试文档

- 将文档从代码审计任务转换为端到端业务回归测试链路
- 重新组织文档结构为链路总览、示例数据基线和详细步骤
- 添加完整的业务场景清单涵盖WMS/MES/工位终端三大系统
- 定义统一的测试数据包括产品型号、物料清单、工位派工等
- 提供详细的步骤断言和数量等式验证方法
- 建立贯穿全链路的数据流向和状态变更追踪体系
This commit is contained in:
SunYF
2026-09-21 10:48:53 +08:00
parent 0d34bcd6a3
commit 132c3ed6bd
63 changed files with 3309 additions and 5784 deletions
+3
View File
@@ -24,6 +24,8 @@ type Tx struct {
BomItem *BomItemClient
// DailyPlan is the client for interacting with the DailyPlan builders.
DailyPlan *DailyPlanClient
// Dock is the client for interacting with the Dock builders.
Dock *DockClient
// EventLog is the client for interacting with the EventLog builders.
EventLog *EventLogClient
// InspectionRecord is the client for interacting with the InspectionRecord builders.
@@ -211,6 +213,7 @@ func (tx *Tx) init() {
tx.Attachment = NewAttachmentClient(tx.config)
tx.BomItem = NewBomItemClient(tx.config)
tx.DailyPlan = NewDailyPlanClient(tx.config)
tx.Dock = NewDockClient(tx.config)
tx.EventLog = NewEventLogClient(tx.config)
tx.InspectionRecord = NewInspectionRecordClient(tx.config)
tx.LinePoint = NewLinePointClient(tx.config)