房屋

house ``` type House struct { ID uint `json:"id"` // 房屋ID HouseNo string `json:"house_no"` // 房屋编号 Title string `json:"title"` // 房屋名 SaleType typedef.HouseSaleType `json:"sale_type"` // 房屋销售类型 PropertyType typedef.PropertyType `json:"property_type"` // 房屋资产类型 HouseType typedef.HouseType `json:"house_type"` // 房屋类型 Addr string `json:"addr"` // 房屋地址 Rent string `json:"rent"` // 房屋租金 UnitPrice string `json:"unit_price"` // 房屋单价 MarketPrice string `json:"market_price"` // 房屋市场价格 Area string `json:"area"` // 房屋面积 Rate string `json:"rate"` // 房屋利率 LegalAmount string `json:"legal_amount"` // 房屋价值 LegalCurrency string `json:"legal_currency"` // 房屋价值单位 State uint `json:"state"` // 房屋审核状态 ExtraHot string `json:"extra_hot"` // 房屋增发 InvestmentCase File `json:"investment_case"` // InvestmentCase PropertyDetails File `json:"property_details"` // PropertyDetails Financials File `json:"financials"` // Financials Documents []Document `json:"documents"` // Documents Covers []File `json:"covers"` // 封面 Bond *Bond `json:"bond,omitempty"` // 债券 Auction *Auction `json:"auction,omitempty"`// 竞拍 } ```