diff --git a/business/model/dao/dao_job.go b/business/model/dao/dao_job.go index bfa2b78a0..9ef3d2623 100644 --- a/business/model/dao/dao_job.go +++ b/business/model/dao/dao_job.go @@ -476,16 +476,6 @@ func GetStationInfoList(db *DaoDB, stationName string, cityCode int, lat, lng fl TotalCount: GetLastTotalRowCount(db), Data: stations, } - // for _, v := range stations { - // var distance float64 - // if v.Longitude != 0 && v.Latitude != 0 { - // distance = jxutils.EarthDistance(lng, lat, v.Longitude, v.Latitude) - // } else { - // distance = 0 - // } - // v.Distance = distance - // } - // pagedInfo.Data = stations } return pagedInfo, err }