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.
28 lines
822 B
28 lines
822 B
package SinoGnssMySQL
|
|
|
|
import "time"
|
|
|
|
type GnssData struct {
|
|
Id int64 `json:"id" db:"id"`
|
|
StationName string `json:"station_name" db:"station_name"`
|
|
GroupName string `json:"group_name" db:"group_name"`
|
|
Time time.Time `json:"time" db:"time"`
|
|
X float64 `json:"x" db:"x"`
|
|
Y float64 `json:"y" db:"y"`
|
|
H float64 `json:"h" db:"h"`
|
|
}
|
|
|
|
type DxFile struct {
|
|
SensorId int `json:"S"`
|
|
Module string `json:"M"`
|
|
Channel int `json:"C"`
|
|
Error int `json:"R"`
|
|
Round int64 `json:"N"`
|
|
Timespan int64 `json:"T"`
|
|
Req []string `json:"Q"`
|
|
Acq []string `json:"A"`
|
|
RawValue []float64 `json:"RV"`
|
|
LimitValue []float64 `json:"LV"`
|
|
PhyValue []float64 `json:"PV"`
|
|
ThemeValue []float64 `json:"TV"`
|
|
}
|
|
|