From e35519c8893299da2105b61e40594fd6f69d0333 Mon Sep 17 00:00:00 2001 From: yfh Date: Mon, 24 Feb 2025 22:52:08 +0800 Subject: [PATCH] =?UTF-8?q?=E7=8E=AF=E8=8A=82=E5=A4=84=E7=90=86=E6=94=B9?= =?UTF-8?q?=E4=B8=BA=E6=89=B9=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- et_print/printHandler.go | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/et_print/printHandler.go b/et_print/printHandler.go index 90fd1f4..2a1f128 100644 --- a/et_print/printHandler.go +++ b/et_print/printHandler.go @@ -19,10 +19,17 @@ func NewPrintHandler() *PrintHandler { stage: stages.NewStage("测试打印"), } - the.stage.AddProcess(the.print) + the.stage.AddProcess(the.printDatas) return the } +func (the *PrintHandler) printDatas(data []*common_models.ProcessData) []*common_models.ProcessData { + for _, processData := range data { + the.print(processData) + } + return data +} + func (the *PrintHandler) print(p *common_models.ProcessData) *common_models.ProcessData { log.Printf("处理设备[%s]数据", p.DeviceData.Name)