You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
205 B
18 lines
205 B
package common_models
|
|
|
|
import "time"
|
|
|
|
type IDataTrace interface {
|
|
// 数据时间
|
|
T() time.Time
|
|
|
|
// 定位标记
|
|
Q() string
|
|
|
|
// 定位标记
|
|
R() string
|
|
|
|
GetThingId() string
|
|
|
|
GetDeviceId() string
|
|
}
|
|
|