package StudentService import ( "dsBigData/Business/Student/StudentDao" "dsBigData/Business/Student/StudentModel" ) func GetStudentCountAggsXxbxlx(districtCodes []string, schoolIds []string, xxbxlxs []string, areaCode string) ([]StudentModel.StudentCountAggsXxbxlx, error) { arr, err := StudentDao.GetStudentCountAggsXxbxlx(districtCodes, schoolIds, xxbxlxs, areaCode) 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 GetDirectlyUnderStudentTotalCount(schoolIds []string) (int, error) { count, err := StudentDao.GetDirectlyUnderStudentTotalCount(schoolIds) return count, err } func GetStudentCurrentTermAddCount(areaCode string) (int, error) { count, err := StudentDao.GetStudentCurrentTermAddCount(areaCode) return count, err } func GetDirectlyUnderStudentCurrentTermAddCount(schoolIds []string) (int, error) { count, err := StudentDao.GetDirectlyUnderStudentCurrentTermAddCount(schoolIds) return count, err }