2023-08-28 14:51:31 +08:00

13 lines
221 B
Go

package dtos
import "fmt"
type Gps struct {
Longitude float64 `json:"longitude"`
Latitude float64 `json:"latitude"`
}
func (gps Gps) ToLocation() string {
return fmt.Sprintf("%f,%f", gps.Latitude, gps.Longitude)
}