// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity // HousePreference is the golang structure for table house_preference. type HousePreference struct { Id uint64 `json:"id" orm:"id" description:""` // BudgetMin float64 `json:"budgetMin" orm:"budget_min" description:"预算下限(万元)"` // 预算下限(万元) BudgetMax float64 `json:"budgetMax" orm:"budget_max" description:"预算上限(万元)"` // 预算上限(万元) AreaMin float64 `json:"areaMin" orm:"area_min" description:"面积下限(平米)"` // 面积下限(平米) AreaMax float64 `json:"areaMax" orm:"area_max" description:"面积上限(平米)"` // 面积上限(平米) Layouts string `json:"layouts" orm:"layouts" description:"户型偏好JSON"` // 户型偏好JSON SubwayLines string `json:"subwayLines" orm:"subway_lines" description:"地铁线路JSON"` // 地铁线路JSON SchoolRequired int `json:"schoolRequired" orm:"school_required" description:"是否要求学区"` // 是否要求学区 CommuteTarget string `json:"commuteTarget" orm:"commute_target" description:"通勤目标点"` // 通勤目标点 CommuteLimitMin int `json:"commuteLimitMin" orm:"commute_limit_min" description:"通勤上限(分钟)"` // 通勤上限(分钟) RegionPrefer string `json:"regionPrefer" orm:"region_prefer" description:"区域偏好JSON"` // 区域偏好JSON Weights string `json:"weights" orm:"weights" description:"权重JSON"` // 权重JSON CreatedAt string `json:"createdAt" orm:"created_at" description:""` // UpdatedAt string `json:"updatedAt" orm:"updated_at" description:""` // DeletedAt string `json:"deletedAt" orm:"deleted_at" description:""` // }