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
1.2 KiB
37 lines
1.2 KiB
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
|
|
}
|
|
|
|
func GetStudentCountAggsXb(schoolId string) ([]StudentModel.StudentCountXb, error) {
|
|
arr, err := StudentDao.GetStudentCountAggsXb(schoolId)
|
|
return arr, err
|
|
}
|
|
|
|
func GetStudentTotalCount(areaCode string) (int, error) {
|
|
count, err := StudentDao.GetStudentTotalCount(areaCode)
|
|
return count, err
|
|
}
|
|
|
|
func GetStudentCurrentTermAddCount(areaCode string) (int, error) {
|
|
count, err := StudentDao.GetStudentCurrentTermAddCount(areaCode)
|
|
return count, err
|
|
}
|