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.
37 lines
803 B
37 lines
803 B
package StudentModel
|
|
|
|
type StudentCountAggsXxbxlx struct {
|
|
XxbxlxCode string `json:"xxbxlx_code"`
|
|
Count int `json:"count"`
|
|
Percent string `json:"percent"`
|
|
}
|
|
|
|
type StudentCountXxbxlx struct {
|
|
XxbxlxCode string `json:"xxbxlx_code"`
|
|
XxbxlxName string `json:"xxbxlx_name"`
|
|
Count int `json:"count"`
|
|
Percent string `json:"percent"`
|
|
}
|
|
|
|
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 StudentCountRxnf struct {
|
|
Rxnf string `json:"rxnf"`
|
|
Count int `json:"count"`
|
|
}
|
|
|
|
type StudentCountXb struct {
|
|
XbName string `json:"xb_name"`
|
|
Count int `json:"count"`
|
|
Percent string `json:"percent"`
|
|
}
|