// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity // HouseCommunityFacility is the golang structure for table house_community_facility. type HouseCommunityFacility struct { Id uint64 `json:"id" orm:"id" description:""` // CommunityId uint64 `json:"communityId" orm:"community_id" description:"小区ID"` // 小区ID FacilityId uint64 `json:"facilityId" orm:"facility_id" description:"配套ID"` // 配套ID Distance int `json:"distance" orm:"distance" description:"距离(米)"` // 距离(米) CommuteMinutes int `json:"commuteMinutes" orm:"commute_minutes" 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:""` // }