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.
29 lines
1001 B
29 lines
1001 B
2 weeks ago
|
package models
|
||
|
|
||
|
type OLCZ struct {
|
||
|
Roadno int32 `json:"roadno"`
|
||
|
Speed int32 `json:"speed"`
|
||
|
AxisCount int32 `json:"AxisCount"`
|
||
|
AxleGrpNum int32 `json:"AxleGrpNum"`
|
||
|
AxieWeight1 int `json:"AxieWeight1"`
|
||
|
AxieWeight2 int `json:"AxieWeight2"`
|
||
|
AxieWeight3 int `json:"AxieWeight3"`
|
||
|
AxieWeight4 int `json:"AxieWeight4"`
|
||
|
AxieWeight5 int `json:"AxieWeight5"`
|
||
|
AxieWeight6 int `json:"AxieWeight6"`
|
||
|
AxieWeight7 int `json:"AxieWeight7"`
|
||
|
AxieWeight8 int `json:"AxieWeight8"`
|
||
|
AxieWeight9 int `json:"AxieWeight9"`
|
||
|
AxieWeight10 int `json:"AxieWeight10"`
|
||
|
GrossWeight int32 `json:"GrossWeight"`
|
||
|
StrTimeYear string `json:"strTimeYear"`
|
||
|
Carmodel string `json:"carmodel"`
|
||
|
OperDirec int32 `json:"operDirec"`
|
||
|
Carlen int `json:"carlen"`
|
||
|
License string `json:"license"`
|
||
|
LimitWeight int `json:"LimitWeight"`
|
||
|
IP string `json:"IP"`
|
||
|
DataState int `json:"DataState"`
|
||
|
Atime string `json:"atime"`
|
||
|
}
|