Files
Pointly-Tel/amap/model/entity/poi.go
T
2026-07-30 10:53:58 +08:00

24 lines
1.5 KiB
Go

package entity
import "github.com/gogf/gf/v2/os/gtime"
type PoiMerchant struct {
Id int64 `orm:"id" json:"id" dc:"主键ID"`
PoiId string `orm:"poi_id" json:"poiId" dc:"高德POI ID"`
Name string `orm:"name" json:"name" dc:"商户名称"`
Address string `orm:"address" json:"address" dc:"地址"`
Phone string `orm:"phone" json:"phone" dc:"联系电话"`
Category string `orm:"category" json:"category" dc:"分类"`
CategoryCode string `orm:"category_code" json:"categoryCode" dc:"分类代码"`
City string `orm:"city" json:"city" dc:"城市"`
CityCode string `orm:"city_code" json:"cityCode" dc:"城市代码"`
Longitude float64 `orm:"longitude" json:"longitude" dc:"经度"`
Latitude float64 `orm:"latitude" json:"latitude" dc:"纬度"`
BusinessArea string `orm:"business_area" json:"businessArea" dc:"商圈"`
Website string `orm:"website" json:"website" dc:"网址"`
RawData string `orm:"raw_data" json:"rawData" dc:"原始数据"`
CreatedAt *gtime.Time `orm:"created_at" json:"createdAt" dc:"创建时间"`
UpdatedAt *gtime.Time `orm:"updated_at" json:"updatedAt" dc:"更新时间"`
DeletedAt *gtime.Time `orm:"deleted_at" json:"deletedAt" dc:"删除时间"`
}