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.
20 lines
449 B
20 lines
449 B
package models
|
|
|
|
type dx struct {
|
|
S int `json:"S"`
|
|
M int `json:"M"`
|
|
C int `json:"C"`
|
|
R int `json:"R"`
|
|
N int `json:"N"`
|
|
T int64 `json:"T"`
|
|
Q []string `json:"Q"`
|
|
A []string `json:"A"`
|
|
FI int `json:"FI"`
|
|
RV []float64 `json:"RV"`
|
|
LV []float64 `json:"LV"`
|
|
PV []float64 `json:"PV"`
|
|
TV []float64 `json:"TV"`
|
|
//DT interface{} `json:"DT"`
|
|
SR []string `json:"SR"`
|
|
SRT []string `json:"SRT"`
|
|
}
|
|
|