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.
22 lines
734 B
22 lines
734 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
|
|
}
|
|
|
|
func GetStudentCountAggsRxnf(schoolId string, stageId string) ([]StudentModel.StudentCountRxnf, error) {
|
|
arr, err := StudentDao.GetStudentCountAggsRxnf(schoolId, stageId)
|
|
return arr, err
|
|
}
|