// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity // HousePriceSnapshot is the golang structure for table house_price_snapshot. type HousePriceSnapshot struct { Id uint64 `json:"id" orm:"id" description:""` // ListingId uint64 `json:"listingId" orm:"listing_id" description:"房源ID"` // 房源ID CommunityId uint64 `json:"communityId" orm:"community_id" description:"小区ID"` // 小区ID SnapDate string `json:"snapDate" orm:"snap_date" description:"快照日期"` // 快照日期 ListPrice float64 `json:"listPrice" orm:"list_price" description:"挂牌价(万元)"` // 挂牌价(万元) DealPrice float64 `json:"dealPrice" orm:"deal_price" 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:""` // }