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