From e8b6ad0c160a39b024b0f2b996d603bdd9b22db9 Mon Sep 17 00:00:00 2001
From: zhangqian <zhangqian@123.com>
Date: 星期四, 28 九月 2023 17:44:07 +0800
Subject: [PATCH] 工艺参数列表增加是否可以更新字段
---
conf/config.go | 25 +++++++++++++++++++------
1 files changed, 19 insertions(+), 6 deletions(-)
diff --git a/conf/config.go b/conf/config.go
index 0216051..53f53ea 100644
--- a/conf/config.go
+++ b/conf/config.go
@@ -58,6 +58,7 @@
Services struct {
ApsServer string
+ Serial string
}
nsqConf struct {
@@ -66,9 +67,18 @@
NsqlookupdAddr string
}
- PLCAddressItem struct {
- FieldName string
- Address int
+ plc struct {
+ FinishNumberTimeInterval int
+ TotalNumberTimeInterval int
+ ModbusIntType string
+ SlaveId int
+ Package string
+ StandbyTime int64
+ }
+
+ Prompt struct {
+ SafeProduce string `json:"safeProduce,omitempty"`
+ PlcNotConnected string `json:"plcNotConnected,omitempty"`
}
config struct {
@@ -87,8 +97,10 @@
//NsqConf
NsqConf nsqConf
- //PLC write address
- PLCAddresses []PLCAddressItem
+ //PLC
+ PLC plc
+
+ Prompt Prompt
}
)
@@ -127,6 +139,7 @@
log.Println("......................................................")
log.Printf(" System: %+v", Conf.System)
log.Printf(" Log: %+v", Conf.Log)
- log.Printf(" plc address: %+v", Conf.PLCAddresses)
+ log.Printf(" plc : %+v", Conf.PLC)
+ log.Printf(" services : %+v", Conf.Services)
log.Println("......................................................")
}
--
Gitblit v1.8.0