9 lines
144 B
Go
9 lines
144 B
Go
|
package model
|
||
|
|
||
|
//计轴检测点模型
|
||
|
type AxlePointModel struct {
|
||
|
DeviceIdentity
|
||
|
//计轴检测点所在轨道
|
||
|
LinkOffset *LinkOffsetRef
|
||
|
}
|