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.
12 lines
376 B
12 lines
376 B
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"` //毫秒级
|
|
}
|
|
|