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.
17 lines
542 B
17 lines
542 B
package StudentService
|
|
|
|
import (
|
|
"dsBigData/Business/Student/StudentDao"
|
|
"dsBigData/Business/Student/StudentModel"
|
|
)
|
|
|
|
func GetStudentCountAggsXxbxlx(districtCodes []string, schoolIds []string, xxbxlxs []string) ([]StudentModel.StudentCountAggsXxbxlx, error) {
|
|
arr, err := StudentDao.GetStudentCountAggsXxbxlx(districtCodes, schoolIds, xxbxlxs)
|
|
return arr, err
|
|
}
|
|
|
|
func GetStudentCountAggsOrgId(schoolIds []string) ([]StudentModel.StudentCountAggsOrg, error) {
|
|
arr, err := StudentDao.GetStudentCountAggsOrgId(schoolIds)
|
|
return arr, err
|
|
}
|