9 lines
186 B
Go
9 lines
186 B
Go
|
package repository
|
||
|
|
||
|
// 检测点
|
||
|
type MapCoordinate struct {
|
||
|
Coordinate string // 坐标系
|
||
|
MinCoordinate int64 // 坐标系最小值
|
||
|
MaxCoordinate int64 // 坐标系最大值
|
||
|
}
|