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.
34 lines
738 B
34 lines
738 B
package StudentModel
|
|
|
|
type StudentCountAggsXxbxlx struct {
|
|
XxbxlxCode string `json:"xxbxlx_code"`
|
|
Count int `json:"count"`
|
|
}
|
|
|
|
type StudentCountXxbxlx struct {
|
|
XxbxlxCode string `json:"xxbxlx_code"`
|
|
XxbxlxName string `json:"xxbxlx_name"`
|
|
Count int `json:"count"`
|
|
}
|
|
|
|
type StudentCountAggsOrg struct {
|
|
OrgId string `json:"org_id"`
|
|
Count int `json:"count"`
|
|
}
|
|
|
|
type StudentCountOrg struct {
|
|
OrgId string `json:"org_id"`
|
|
OrgName string `json:"org_name"`
|
|
Count int `json:"count"`
|
|
}
|
|
|
|
type StudentCountAggsRxnf struct {
|
|
OrgId string `json:"org_id"`
|
|
Count int `json:"count"`
|
|
}
|
|
|
|
type StudentCountRxnf struct {
|
|
OrgId string `json:"org_id"`
|
|
OrgName string `json:"org_name"`
|
|
Count int `json:"count"`
|
|
} |