// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity // HouseFacility is the golang structure for table house_facility. type HouseFacility struct { Id uint64 `json:"id" orm:"id" description:""` // Name string `json:"name" orm:"name" description:"配套名称"` // 配套名称 Type string `json:"type" orm:"type" description:"地铁/学校/医院/商圈"` // 地铁/学校/医院/商圈 Lng float64 `json:"lng" orm:"lng" description:"经度"` // 经度 Lat float64 `json:"lat" orm:"lat" description:"纬度"` // 纬度 Line string `json:"line" orm:"line" description:"地铁线路"` // 地铁线路 CreatedAt string `json:"createdAt" orm:"created_at" description:""` // UpdatedAt string `json:"updatedAt" orm:"updated_at" description:""` // DeletedAt string `json:"deletedAt" orm:"deleted_at" description:""` // }