// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity // HouseSchoolDistrict is the golang structure for table house_school_district. type HouseSchoolDistrict struct { Id uint64 `json:"id" orm:"id" description:""` // SchoolName string `json:"schoolName" orm:"school_name" description:"学校名"` // 学校名 CommunityId uint64 `json:"communityId" orm:"community_id" description:"小区ID"` // 小区ID DistrictPolygon string `json:"districtPolygon" orm:"district_polygon" description:"划片范围GeoJSON"` // 划片范围GeoJSON DistrictYear int `json:"districtYear" orm:"district_year" description:"划片年度"` // 划片年度 Note string `json:"note" orm:"note" 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:""` // }