// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity // HouseBuilding is the golang structure for table house_building. type HouseBuilding struct { Id uint64 `json:"id" orm:"id" description:""` // CommunityId uint64 `json:"communityId" orm:"community_id" description:"小区ID"` // 小区ID BuildingNo string `json:"buildingNo" orm:"building_no" description:"栋号"` // 栋号 Units int `json:"units" orm:"units" description:"单元数"` // 单元数 TotalFloors int `json:"totalFloors" orm:"total_floors" description:"总楼层"` // 总楼层 ElevatorCount int `json:"elevatorCount" orm:"elevator_count" description:"电梯数"` // 电梯数 LadderRatio string `json:"ladderRatio" orm:"ladder_ratio" description:"梯户比"` // 梯户比 BuildingType string `json:"buildingType" orm:"building_type" description:"板楼/塔楼"` // 板楼/塔楼 Lng float64 `json:"lng" orm:"lng" description:"楼栋经度"` // 楼栋经度 Lat float64 `json:"lat" orm:"lat" 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:""` // }