package model //设备身份模型 type DeviceIdentity struct { Id string } //端口定义,如轨道、区段、道岔的端口 type PortEnum = int8 //具体端口枚举 const ( A PortEnum = iota B C )