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.

57 lines
1.3 KiB

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"`
}
type Stage struct {
StageId string `json:"stage_id"`
StageName string `json:"stage_name"`
}
type TotalCountAndCurrentTermCount struct {
Title string `json:"title"`
TotalCount int `json:"total_count"`
CurrentTermAddCount int `json:"current_term_add_count"`
}