This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package handler
type DataMgr struct {
Coils []byte // 线圈(DO:数字输出)
DiscreteInputs []byte // 离散输入(DI:数字输入)
HoldingRegisters []uint16 // 保持寄存器(AO:模拟输出)
InputRegisters []uint16 // 输入寄存器(AI:模拟输入)
}