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.
13 lines
376 B
13 lines
376 B
2 weeks ago
|
package models
|
||
|
|
||
|
type ZD struct {
|
||
|
SensorId int `json:"Sensorid"`
|
||
|
Module string `json:"Module"`
|
||
|
Channel int `json:"Channel"`
|
||
|
Frequency int `json:"Frequency,omitempty"`
|
||
|
ThemeValue []float32 `json:"ThemeValue"`
|
||
|
RawValues []float32 `json:"RawValues"`
|
||
|
AccValues []float32 `json:"AccValues"`
|
||
|
Ticks int64 `json:"Ticks"` //毫秒级
|
||
|
}
|