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.
43 lines
956 B
43 lines
956 B
package TeacherModel
|
|
|
|
type TeacherCountAggsXxbxlx struct {
|
|
XxbxlxCode string `json:"xxbxlx_code"`
|
|
Count int `json:"count"`
|
|
Percent string `json:"percent"`
|
|
}
|
|
|
|
type TeacherCountXxbxlx struct {
|
|
XxbxlxCode string `json:"xxbxlx_code"`
|
|
XxbxlxName string `json:"xxbxlx_name"`
|
|
Count int `json:"count"`
|
|
Percent string `json:"percent"`
|
|
}
|
|
|
|
type TeacherCountAggsOrg struct {
|
|
OrgId string `json:"org_id"`
|
|
Count int `json:"count"`
|
|
}
|
|
|
|
type TeacherCountOrg struct {
|
|
OrgId string `json:"org_id"`
|
|
OrgName string `json:"org_name"`
|
|
Count int `json:"count"`
|
|
}
|
|
|
|
type TeacherCountAggsBzlb struct {
|
|
BzlbCode string `json:"bzlb_code"`
|
|
Count int `json:"count"`
|
|
}
|
|
|
|
type TeacherCountBzlb struct {
|
|
BzlbCode string `json:"bzlb_code"`
|
|
BzlbName string `json:"bzlb_name"`
|
|
Count int `json:"count"`
|
|
}
|
|
|
|
type TeacherCountXb struct {
|
|
XbName string `json:"xb_name"`
|
|
Count int `json:"count"`
|
|
Percent string `json:"percent"`
|
|
}
|