package common_models import "time" type IDataTrace interface { // 数据时间 T() time.Time // 定位标记 Q() string // 定位标记 R() string GetThingId() string GetDeviceId() string }