You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1011 B
46 lines
1011 B
package SchoolModel
|
|
|
|
type School struct {
|
|
SchoolId string `json:"school_id"`
|
|
SchoolName string `json:"school_name"`
|
|
}
|
|
|
|
type EduAssist struct {
|
|
EduAssistId string `json:"eduassist_id"`
|
|
EduAssistName string `json:"eduassist_name"`
|
|
}
|
|
|
|
type EduAssistCountAggsDistrict struct {
|
|
AreaCode string `json:"area_code"`
|
|
Count string `json:"count"`
|
|
}
|
|
|
|
type SchoolCountAggsDistrict struct {
|
|
AreaCode string `json:"area_code"`
|
|
Count string `json:"count"`
|
|
}
|
|
|
|
type SchoolCountAggsXxbxlx struct {
|
|
Xxbxlxm string `json:"xxbxlxm"`
|
|
Count string `json:"count"`
|
|
}
|
|
|
|
type SchoolCount struct {
|
|
AreaCode string `json:"area_code"`
|
|
AreaName string `json:"area_name"`
|
|
Count int `json:"count"`
|
|
Xxbxlx []Xxbxlx `json:"xxbxlx"`
|
|
}
|
|
|
|
type Xxbxlx struct {
|
|
XxbxlxCode string `json:"xxbxlx_code"`
|
|
XxbxlxName string `json:"xxbxlx_name"`
|
|
Count int `json:"count"`
|
|
}
|
|
|
|
type EduAssistCount struct {
|
|
AreaCode string `json:"area_code"`
|
|
AreaName string `json:"area_name"`
|
|
Count int `json:"count"`
|
|
}
|