// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity // HouseTransaction is the golang structure for table house_transaction. type HouseTransaction struct { Id uint64 `json:"id" orm:"id" description:""` // CommunityId uint64 `json:"communityId" orm:"community_id" description:"小区ID"` // 小区ID BuildingId uint64 `json:"buildingId" orm:"building_id" description:"楼栋ID"` // 楼栋ID Layout string `json:"layout" orm:"layout" description:"户型"` // 户型 Area float64 `json:"area" orm:"area" description:"面积(平米)"` // 面积(平米) DealPrice float64 `json:"dealPrice" orm:"deal_price" description:"成交总价(万元)"` // 成交总价(万元) DealUnitPrice float64 `json:"dealUnitPrice" orm:"deal_unit_price" description:"成交单价(元/平米)"` // 成交单价(元/平米) ListDays int `json:"listDays" orm:"list_days" description:"挂牌到成交天数"` // 挂牌到成交天数 DealDate string `json:"dealDate" orm:"deal_date" description:"成交日期"` // 成交日期 Source string `json:"source" orm:"source" 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:""` // }